Modifier and Type | Class and Description |
---|---|
class |
AbstractScmVersion |
class |
ScmBranch |
class |
ScmRevision |
class |
ScmTag |
Modifier and Type | Method and Description |
---|---|
ScmVersion |
CommandParameters.getScmVersion(CommandParameter parameter)
Return the parameter value as ScmVersion.
|
ScmVersion |
CommandParameters.getScmVersion(CommandParameter parameter,
ScmVersion defaultValue)
Return the parameter value as ScmVersion or the default value.
|
Modifier and Type | Method and Description |
---|---|
ScmVersion |
CommandParameters.getScmVersion(CommandParameter parameter,
ScmVersion defaultValue)
Return the parameter value as ScmVersion or the default value.
|
void |
CommandParameters.setScmVersion(CommandParameter parameter,
ScmVersion scmVersion)
Set a parameter value.
|
Modifier and Type | Method and Description |
---|---|
ScmVersion |
ChangeLogScmRequest.getEndRevision() |
ScmVersion |
ChangeLogSet.getEndVersion()
Returns the end version (revision/branch/label) for this set.
|
ScmVersion |
ChangeLogScmRequest.getStartRevision() |
ScmVersion |
ChangeLogSet.getStartVersion()
Returns the start version (revision/branch/label) for this set.
|
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
AbstractChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion,
String datePattern)
Deprecated.
|
void |
ChangeLogScmRequest.setEndRevision(ScmVersion endRevision) |
void |
ChangeLogSet.setEndVersion(ScmVersion endVersion) |
void |
ChangeLogScmRequest.setStartRevision(ScmVersion startRevision) |
void |
ChangeLogSet.setStartVersion(ScmVersion startVersion) |
Modifier and Type | Method and Description |
---|---|
protected abstract CheckInScmResult |
AbstractCheckInCommand.executeCheckInCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
ScmVersion scmVersion) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
AbstractCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion)
Execute Check out command line in a recursive check out way.
|
protected abstract CheckOutScmResult |
AbstractCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
boolean recursive)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
protected abstract DiffScmResult |
AbstractDiffCommand.executeDiffCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision) |
Modifier and Type | Method and Description |
---|---|
protected abstract ExportScmResult |
AbstractExportCommand.executeExportCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
String outputDirectory) |
Modifier and Type | Method and Description |
---|---|
protected abstract ListScmResult |
AbstractListCommand.executeListCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
boolean recursive,
ScmVersion scmVersion)
List contents of the remote repository
|
Modifier and Type | Method and Description |
---|---|
protected abstract UpdateScmResult |
AbstractUpdateCommand.executeUpdateCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion) |
Modifier and Type | Method and Description |
---|---|
ChangeLogScmResult |
AbstractScmManager.changeLog(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Returns the changes that have happend in the source control system between two tags.
|
ChangeLogScmResult |
ScmManager.changeLog(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Deprecated.
|
ChangeLogScmResult |
AbstractScmManager.changeLog(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision,
String datePattern)
Returns the changes that have happend in the source control system between two tags.
|
ChangeLogScmResult |
ScmManager.changeLog(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision,
String datePattern)
Deprecated.
|
CheckInScmResult |
AbstractScmManager.checkIn(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion revision,
String message)
Save the changes you have done into the repository.
|
CheckInScmResult |
ScmManager.checkIn(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion revision,
String message)
Save the changes you have done into the repository.
|
CheckOutScmResult |
AbstractScmManager.checkOut(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
ScmManager.checkOut(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
AbstractScmManager.checkOut(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
ScmManager.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
ScmVersion version,
boolean recursive)
Create a copy of the repository on your local machine.
|
DiffScmResult |
AbstractScmManager.diff(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Create a diff between two branch/tag/revision.
|
DiffScmResult |
ScmManager.diff(ScmRepository scmRepository,
ScmFileSet scmFileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Create a diff between two branch/tag/revision.
|
ExportScmResult |
AbstractScmManager.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmManager.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
AbstractScmManager.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
String outputDirectory)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmManager.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
String outputDirectory)
Create an exported copy of the repository on your local machine
|
ListScmResult |
AbstractScmManager.list(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive,
ScmVersion version)
List each element (files and directories) of fileSet as they exist in the repository.
|
ListScmResult |
ScmManager.list(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive,
ScmVersion version)
List each element (files and directories) of fileSet as they exist in the repository.
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
Date lastUpdate)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
Date lastUpdate)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
Date lastUpdate,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
Date lastUpdate,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
Modifier and Type | Method and Description |
---|---|
ChangeLogScmResult |
ScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Deprecated.
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Returns the changes that have happend in the source control system between two tags.
|
ChangeLogScmResult |
ScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision,
String datePattern)
Deprecated.
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion,
String datePattern)
Returns the changes that have happend in the source control system between two tags.
|
CheckInScmResult |
ScmProvider.checkIn(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion revision,
String message)
Save the changes you have done into the repository.
|
CheckInScmResult |
AbstractScmProvider.checkIn(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
String message)
Save the changes you have done into the repository.
|
CheckOutScmResult |
ScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
AbstractScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
ScmProvider.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
ScmVersion version,
boolean recursive)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
AbstractScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
boolean recursive)
Create a copy of the repository on your local machine.
|
DiffScmResult |
ScmProvider.diff(ScmRepository scmRepository,
ScmFileSet scmFileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Create a diff between two branch/tag/revision.
|
DiffScmResult |
AbstractScmProvider.diff(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Create a diff between two branch/tag/revision.
|
ExportScmResult |
ScmProvider.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
AbstractScmProvider.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmProvider.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
String outputDirectory)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
AbstractScmProvider.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
String outputDirectory)
Create an exported copy of the repository on your local machine
|
ListScmResult |
ScmProvider.list(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive,
ScmVersion version)
List each element (files and directories) of fileSet as they exist in the repository.
|
ListScmResult |
AbstractScmProvider.list(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive,
ScmVersion scmVersion)
List each element (files and directories) of fileSet as they exist in the repository.
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
Date lastUpdate)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
Date lastUpdate)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
Date lastUpdate,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
Date lastUpdate,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
Copyright © 2003–2014 The Apache Software Foundation. All rights reserved.