Modifier and Type | Class and Description |
---|---|
class |
NoSuchCommandScmException |
Modifier and Type | Method and Description |
---|---|
boolean |
CommandParameters.getBoolean(CommandParameter parameter)
Return the parameter value as boolean.
|
boolean |
CommandParameters.getBoolean(CommandParameter parameter,
boolean defaultValue)
Return the parameter value as boolean.
|
Date |
CommandParameters.getDate(CommandParameter parameter)
Return the parameter value as Date.
|
Date |
CommandParameters.getDate(CommandParameter parameter,
Date defaultValue)
Return the parameter value as String or the default value if it doesn't exist.
|
File[] |
CommandParameters.getFileArray(CommandParameter parameter) |
File[] |
CommandParameters.getFileArray(CommandParameter parameter,
File[] defaultValue) |
int |
CommandParameters.getInt(CommandParameter parameter)
Return the parameter value as int.
|
int |
CommandParameters.getInt(CommandParameter parameter,
int defaultValue)
Return the parameter value as int or the default value if it doesn't exist.
|
ScmBranchParameters |
CommandParameters.getScmBranchParameters(CommandParameter parameter) |
ScmTagParameters |
CommandParameters.getScmTagParameters(CommandParameter parameter) |
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.
|
String |
CommandParameters.getString(CommandParameter parameter)
Return the parameter value as String.
|
String |
CommandParameters.getString(CommandParameter parameter,
String defaultValue)
Return the parameter value or the default value if it doesn't exist.
|
void |
CommandParameters.setDate(CommandParameter parameter,
Date date)
Set a parameter value.
|
void |
CommandParameters.setInt(CommandParameter parameter,
int value)
Set a parameter value.
|
void |
CommandParameters.setScmBranchParameters(CommandParameter parameter,
ScmBranchParameters scmBranchParameters) |
void |
CommandParameters.setScmTagParameters(CommandParameter parameter,
ScmTagParameters scmTagParameters) |
void |
CommandParameters.setScmVersion(CommandParameter parameter,
ScmVersion scmVersion)
Set a parameter value.
|
void |
CommandParameters.setString(CommandParameter parameter,
String value)
Set a parameter value.
|
Modifier and Type | Method and Description |
---|---|
ScmResult |
Command.execute(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ScmResult |
AbstractCommand.execute(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract ScmResult |
AbstractCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected abstract ScmResult |
AbstractAddCommand.executeAddCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
boolean binary) |
protected ScmResult |
AbstractAddCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
abstract BlameScmResult |
AbstractBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet workingDirectory,
String filename) |
protected ScmResult |
AbstractBlameCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet workingDirectory,
CommandParameters parameters) |
String |
BlameScmRequest.getFilename() |
void |
BlameScmRequest.setFilename(String filename) |
void |
BlameScmRequest.setIgnoreWhitespace(boolean ignoreWhitespace) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AbstractBranchCommand.executeBranchCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String branchName,
ScmBranchParameters scmBranchParameters)
default impl to provide backward comp
|
protected abstract ScmResult |
AbstractBranchCommand.executeBranchCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String branchName,
String message) |
ScmResult |
AbstractBranchCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
AbstractChangeLogCommand.executeChangeLogCommand(ChangeLogScmRequest request) |
protected abstract ChangeLogScmResult |
AbstractChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern)
Deprecated.
|
protected ChangeLogScmResult |
AbstractChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion,
String datePattern)
Deprecated.
|
protected ChangeLogScmResult |
AbstractChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion version,
String datePattern)
Deprecated.
|
ScmResult |
ChangeLogCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ScmResult |
AbstractChangeLogCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
String |
ChangeLogScmRequest.getDatePattern() |
Date |
ChangeLogScmRequest.getEndDate() |
ScmVersion |
ChangeLogScmRequest.getEndRevision() |
Integer |
ChangeLogScmRequest.getLimit() |
int |
ChangeLogScmRequest.getNumDays() |
ScmVersion |
ChangeLogScmRequest.getRevision() |
ScmBranch |
ChangeLogScmRequest.getScmBranch() |
Date |
ChangeLogScmRequest.getStartDate() |
ScmVersion |
ChangeLogScmRequest.getStartRevision() |
void |
ChangeLogScmRequest.setDatePattern(String datePattern) |
void |
ChangeLogScmRequest.setDateRange(Date startDate,
Date endDate) |
void |
ChangeLogScmRequest.setEndDate(Date endDate) |
void |
ChangeLogScmRequest.setEndRevision(ScmVersion endRevision) |
void |
ChangeLogScmRequest.setLimit(Integer limit) |
void |
ChangeLogScmRequest.setNumDays(int numDays) |
void |
ChangeLogScmRequest.setRevision(ScmVersion revision) |
void |
ChangeLogScmRequest.setScmBranch(ScmBranch scmBranch) |
void |
ChangeLogScmRequest.setStartDate(Date startDate) |
void |
ChangeLogScmRequest.setStartRevision(ScmVersion startRevision) |
Modifier and Type | Method and Description |
---|---|
protected abstract CheckInScmResult |
AbstractCheckInCommand.executeCheckInCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
ScmVersion scmVersion) |
ScmResult |
AbstractCheckInCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
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,
boolean shallow)
Execute Check out command line.
|
ScmResult |
AbstractCheckOutCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
AbstractDiffCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract DiffScmResult |
AbstractDiffCommand.executeDiffCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
AbstractEditCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract ScmResult |
AbstractEditCommand.executeEditCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AbstractExportCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract ExportScmResult |
AbstractExportCommand.executeExportCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
String outputDirectory) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
AbstractFileInfoCommand.executeCommand(ScmProviderRepository repository,
File workingDirectory,
CommandParameters parameters) |
protected abstract ScmResult |
AbstractFileInfoCommand.executeFileInfoCommand(ScmProviderRepository repository,
File workingDirectory,
String filename) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
AbstractListCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
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 |
---|---|
ScmResult |
AbstractLockCommand.executeCommand(ScmProviderRepository repository,
File workingDirectory,
CommandParameters parameters) |
protected abstract ScmResult |
AbstractLockCommand.executeLockCommand(ScmProviderRepository repository,
File workingDirectory,
String filename) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AbstractLoginCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
abstract LoginScmResult |
AbstractLoginCommand.executeLoginCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AbstractMkdirCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract MkdirScmResult |
AbstractMkdirCommand.executeMkdirCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal)
Creates directories in the remote repository.
|
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AbstractRemoteInfoCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
abstract RemoteInfoScmResult |
AbstractRemoteInfoCommand.executeRemoteInfoCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AbstractRemoveCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract ScmResult |
AbstractRemoveCommand.executeRemoveCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
AbstractStatusCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract StatusScmResult |
AbstractStatusCommand.executeStatusCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
AbstractTagCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract ScmResult |
AbstractTagCommand.executeTagCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String tagName,
ScmTagParameters scmTagParameters) |
protected ScmResult |
AbstractTagCommand.executeTagCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String tagName,
String message)
|
Modifier and Type | Method and Description |
---|---|
ScmResult |
AbstractUnEditCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract ScmResult |
AbstractUnEditCommand.executeUnEditCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
AbstractUnlockCommand.executeCommand(ScmProviderRepository repository,
File workingDirectory,
CommandParameters parameters) |
protected abstract ScmResult |
AbstractUnlockCommand.executeUnlockCommand(ScmProviderRepository repository,
File workingDirectory) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
AbstractUpdateCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract UpdateScmResult |
AbstractUpdateCommand.executeUpdateCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion) |
Modifier and Type | Class and Description |
---|---|
class |
NoSuchScmProviderException |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
ScmManagerStub.add(ScmRepository repository,
ScmFileSet fileSet)
Adds the given files to the source control system
|
AddScmResult |
ScmManager.add(ScmRepository repository,
ScmFileSet fileSet)
Adds the given files to the source control system
|
AddScmResult |
AbstractScmManager.add(ScmRepository repository,
ScmFileSet fileSet)
Adds the given files to the source control system
|
AddScmResult |
ScmManagerStub.add(ScmRepository repository,
ScmFileSet fileSet,
String message)
Adds the given files to the source control system
|
AddScmResult |
ScmManager.add(ScmRepository repository,
ScmFileSet fileSet,
String message)
Adds the given files to the source control system
|
AddScmResult |
AbstractScmManager.add(ScmRepository repository,
ScmFileSet fileSet,
String message)
Adds the given files to the source control system
|
BlameScmResult |
ScmManagerStub.blame(BlameScmRequest blameScmRequest) |
BlameScmResult |
ScmManager.blame(BlameScmRequest blameScmRequest) |
BlameScmResult |
AbstractScmManager.blame(BlameScmRequest blameScmRequest) |
BlameScmResult |
ScmManagerStub.blame(ScmRepository repository,
ScmFileSet fileSet,
String filename)
Returns the blame of specified file
|
BlameScmResult |
ScmManager.blame(ScmRepository repository,
ScmFileSet fileSet,
String filename)
Returns the blame of specified file
|
BlameScmResult |
AbstractScmManager.blame(ScmRepository repository,
ScmFileSet fileSet,
String filename)
Returns the blame of specified file
|
BranchScmResult |
ScmManagerStub.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
BranchScmResult |
ScmManager.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
BranchScmResult |
AbstractScmManager.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
BranchScmResult |
ScmManagerStub.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName,
String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
BranchScmResult |
ScmManager.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName,
String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
BranchScmResult |
AbstractScmManager.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName,
String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
ChangeLogScmResult |
ScmManagerStub.changeLog(ChangeLogScmRequest request)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmManager.changeLog(ChangeLogScmRequest scmRequest)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
AbstractScmManager.changeLog(ChangeLogScmRequest scmRequest)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmManagerStub.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmManager.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch)
Deprecated.
|
ChangeLogScmResult |
AbstractScmManager.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmManagerStub.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch,
String datePattern)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmManager.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch,
String datePattern)
Deprecated.
|
ChangeLogScmResult |
AbstractScmManager.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch,
String datePattern)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmManagerStub.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 startVersion,
ScmVersion endVersion)
Returns the changes that have happend in the source control system between two tags.
|
ChangeLogScmResult |
ScmManagerStub.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.
|
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.
|
CheckInScmResult |
ScmManagerStub.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.
|
CheckInScmResult |
AbstractScmManager.checkIn(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion revision,
String message)
Save the changes you have done into the repository.
|
CheckInScmResult |
ScmManagerStub.checkIn(ScmRepository repository,
ScmFileSet fileSet,
String message)
Save the changes you have done into the repository.
|
CheckInScmResult |
ScmManager.checkIn(ScmRepository repository,
ScmFileSet fileSet,
String message)
Save the changes you have done into the repository.
|
CheckInScmResult |
AbstractScmManager.checkIn(ScmRepository repository,
ScmFileSet fileSet,
String message)
Save the changes you have done into the repository.
|
CheckOutScmResult |
ScmManagerStub.checkOut(ScmRepository repository,
ScmFileSet fileSet)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
ScmManager.checkOut(ScmRepository repository,
ScmFileSet fileSet)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
AbstractScmManager.checkOut(ScmRepository repository,
ScmFileSet fileSet)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
ScmManagerStub.checkOut(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
ScmManager.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
boolean recursive)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
AbstractScmManager.checkOut(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
ScmManagerStub.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)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
ScmManagerStub.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.
|
CheckOutScmResult |
AbstractScmManager.checkOut(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive)
Create a copy of the repository on your local machine.
|
DiffScmResult |
ScmManagerStub.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.
|
DiffScmResult |
AbstractScmManager.diff(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Create a diff between two branch/tag/revision.
|
EditScmResult |
ScmManagerStub.edit(ScmRepository repository,
ScmFileSet fileSet)
Make a file editable.
|
EditScmResult |
ScmManager.edit(ScmRepository repository,
ScmFileSet fileSet)
Make a file editable.
|
EditScmResult |
AbstractScmManager.edit(ScmRepository repository,
ScmFileSet fileSet)
Make a file editable.
|
ExportScmResult |
ScmManagerStub.export(ScmRepository repository,
ScmFileSet fileSet)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmManager.export(ScmRepository repository,
ScmFileSet fileSet)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
AbstractScmManager.export(ScmRepository repository,
ScmFileSet fileSet)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmManagerStub.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)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmManagerStub.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
|
ExportScmResult |
AbstractScmManager.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
String outputDirectory)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmManagerStub.export(ScmRepository repository,
ScmFileSet fileSet,
String outputDirectory)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmManager.export(ScmRepository repository,
ScmFileSet fileSet,
String outputDirectory)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
AbstractScmManager.export(ScmRepository repository,
ScmFileSet fileSet,
String outputDirectory)
Create an exported copy of the repository on your local machine
|
ListScmResult |
ScmManagerStub.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.
|
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.
|
MkdirScmResult |
ScmManagerStub.mkdir(ScmRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal)
Create new directory/directories in the repository.
|
MkdirScmResult |
ScmManager.mkdir(ScmRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal)
Create new directory/directories in the repository.
|
MkdirScmResult |
AbstractScmManager.mkdir(ScmRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal)
Create new directory/directories in the repository.
|
RemoveScmResult |
ScmManagerStub.remove(ScmRepository repository,
ScmFileSet fileSet,
String message)
Removes the given files from the source control system
|
RemoveScmResult |
ScmManager.remove(ScmRepository repository,
ScmFileSet fileSet,
String message)
Removes the given files from the source control system
|
RemoveScmResult |
AbstractScmManager.remove(ScmRepository repository,
ScmFileSet fileSet,
String message)
Removes the given files from the source control system
|
StatusScmResult |
ScmManagerStub.status(ScmRepository repository,
ScmFileSet fileSet)
Returns the status of the files in the source control system.
|
StatusScmResult |
ScmManager.status(ScmRepository repository,
ScmFileSet fileSet)
Returns the status of the files in the source control system.
|
StatusScmResult |
AbstractScmManager.status(ScmRepository repository,
ScmFileSet fileSet)
Returns the status of the files in the source control system.
|
TagScmResult |
ScmManagerStub.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
ScmManager.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
AbstractScmManager.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
ScmManagerStub.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName,
String message)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
ScmManager.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName,
String message)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
AbstractScmManager.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName,
String message)
Tag (or label in some systems) will tag the source file with a certain tag
|
UnEditScmResult |
ScmManagerStub.unedit(ScmRepository repository,
ScmFileSet fileSet)
Make a file no longer editable.
|
UnEditScmResult |
ScmManager.unedit(ScmRepository repository,
ScmFileSet fileSet)
Make a file no longer editable.
|
UnEditScmResult |
AbstractScmManager.unedit(ScmRepository repository,
ScmFileSet fileSet)
Make a file no longer editable.
|
UpdateScmResult |
ScmManagerStub.update(ScmRepository repository,
ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManagerStub.update(ScmRepository repository,
ScmFileSet fileSet,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManagerStub.update(ScmRepository repository,
ScmFileSet fileSet,
Date lastUpdate)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
Date lastUpdate)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
Date lastUpdate)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManagerStub.update(ScmRepository repository,
ScmFileSet fileSet,
Date lastUpdate,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
Date lastUpdate,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
Date lastUpdate,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManagerStub.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)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManagerStub.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,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManagerStub.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)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManagerStub.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,
Date lastUpdate,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManagerStub.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
|
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 |
ScmManagerStub.update(ScmRepository repository,
ScmFileSet fileSet,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmManager.update(ScmRepository repository,
ScmFileSet fileSet,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
Modifier and Type | Method and Description |
---|---|
ScmRepository |
AbstractScmMojo.getScmRepository() |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
AbstractScmProvider.add(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
AddScmResult |
ScmProviderStub.add(ScmRepository repository,
ScmFileSet fileSet)
Adds the given files to the source control system
|
AddScmResult |
ScmProvider.add(ScmRepository repository,
ScmFileSet fileSet)
Adds the given files to the source control system
|
AddScmResult |
AbstractScmProvider.add(ScmRepository repository,
ScmFileSet fileSet)
Adds the given files to the source control system
|
AddScmResult |
ScmProviderStub.add(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters commandParameters) |
AddScmResult |
ScmProvider.add(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters commandParameters)
Adds the given files to the source control system
|
AddScmResult |
AbstractScmProvider.add(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
AddScmResult |
ScmProviderStub.add(ScmRepository repository,
ScmFileSet fileSet,
String message)
Adds the given files to the source control system
|
AddScmResult |
ScmProvider.add(ScmRepository repository,
ScmFileSet fileSet,
String message)
Adds the given files to the source control system
|
AddScmResult |
AbstractScmProvider.add(ScmRepository repository,
ScmFileSet fileSet,
String message)
Adds the given files to the source control system
|
BlameScmResult |
ScmProviderStub.blame(BlameScmRequest blameScmRequest) |
BlameScmResult |
ScmProvider.blame(BlameScmRequest blameScmRequest) |
BlameScmResult |
AbstractScmProvider.blame(BlameScmRequest blameScmRequest) |
protected BlameScmResult |
AbstractScmProvider.blame(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
BlameScmResult |
ScmProviderStub.blame(ScmRepository repository,
ScmFileSet fileSet,
String filename)
Returns the blame of specified file
|
BlameScmResult |
ScmProvider.blame(ScmRepository repository,
ScmFileSet fileSet,
String filename)
Deprecated.
use blame with
BlameScmRequest parameter |
BlameScmResult |
AbstractScmProvider.blame(ScmRepository repository,
ScmFileSet fileSet,
String filename)
Returns the blame of specified file
|
protected BranchScmResult |
AbstractScmProvider.branch(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
BranchScmResult |
ScmProviderStub.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
BranchScmResult |
ScmProvider.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName)
Deprecated.
use
#branch(ScmRepository, ScmFileSet, String, String, ScmBranchParameters) |
BranchScmResult |
AbstractScmProvider.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
BranchScmResult |
ScmProviderStub.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName,
ScmBranchParameters scmBranchParameters)
Branch (or label in some systems) will create a branch of the source file with a certain
branch name
|
BranchScmResult |
ScmProvider.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName,
ScmBranchParameters scmBranchParameters)
Branch (or label in some systems) will create a branch of the source file with a certain
branch name
|
BranchScmResult |
AbstractScmProvider.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName,
ScmBranchParameters scmBranchParameters) |
BranchScmResult |
ScmProviderStub.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName,
String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
BranchScmResult |
ScmProvider.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName,
String message)
Deprecated.
use
#branch(ScmRepository, ScmFileSet, String, String, ScmBranchParameters) |
BranchScmResult |
AbstractScmProvider.branch(ScmRepository repository,
ScmFileSet fileSet,
String branchName,
String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch name
|
ChangeLogScmResult |
ScmProviderStub.changeLog(ChangeLogScmRequest scmRequest) |
ChangeLogScmResult |
ScmProvider.changeLog(ChangeLogScmRequest scmRequest)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ChangeLogScmRequest request)
Returns the changes that have happend in the source control system in a certain period of time.
|
protected ChangeLogScmResult |
AbstractScmProvider.changelog(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ChangeLogScmResult |
ScmProviderStub.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch)
Deprecated.
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmProviderStub.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch,
String datePattern)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch,
String datePattern)
Deprecated.
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
ScmBranch branch,
String datePattern)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmProviderStub.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
String branch)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
String branch)
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
String branch)
Deprecated.
|
ChangeLogScmResult |
ScmProviderStub.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
String branch,
String datePattern)
Returns the changes that have happend in the source control system in a certain period of time.
|
ChangeLogScmResult |
ScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
String branch,
String datePattern)
Deprecated.
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
int numDays,
String branch,
String datePattern)
Deprecated.
|
ChangeLogScmResult |
ScmProviderStub.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 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 |
ScmProviderStub.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 |
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.
|
ChangeLogScmResult |
ScmProviderStub.changeLog(ScmRepository repository,
ScmFileSet fileSet,
String startTag,
String endTag)
Returns the changes that have happend in the source control system between two tags.
|
ChangeLogScmResult |
ScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
String startTag,
String endTag)
Deprecated.
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
String startTag,
String endTag)
Deprecated.
|
ChangeLogScmResult |
ScmProviderStub.changeLog(ScmRepository repository,
ScmFileSet fileSet,
String startTag,
String endTag,
String datePattern)
Returns the changes that have happend in the source control system between two tags.
|
ChangeLogScmResult |
ScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
String startTag,
String endTag,
String datePattern)
Deprecated.
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
String startTag,
String endTag,
String datePattern)
Deprecated.
|
protected CheckInScmResult |
AbstractScmProvider.checkin(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckInScmResult |
ScmProviderStub.checkIn(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion revision,
String message)
Save the changes you have done into the repository.
|
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.
|
CheckInScmResult |
ScmProviderStub.checkIn(ScmRepository repository,
ScmFileSet fileSet,
String message)
Save the changes you have done into the repository.
|
CheckInScmResult |
ScmProvider.checkIn(ScmRepository repository,
ScmFileSet fileSet,
String message)
Save the changes you have done into the repository.
|
CheckInScmResult |
AbstractScmProvider.checkIn(ScmRepository repository,
ScmFileSet fileSet,
String message)
Save the changes you have done into the repository.
|
CheckInScmResult |
ScmProviderStub.checkIn(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String message)
Save the changes you have done into the repository.
|
CheckInScmResult |
ScmProvider.checkIn(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String message)
|
CheckInScmResult |
AbstractScmProvider.checkIn(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String message)
Deprecated.
|
protected CheckOutScmResult |
AbstractScmProvider.checkout(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckOutScmResult |
ScmProviderStub.checkOut(ScmRepository repository,
ScmFileSet fileSet)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
ScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
AbstractScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
ScmProviderStub.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
boolean recursive)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
ScmProvider.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
boolean recursive)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
AbstractScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
ScmProviderStub.checkOut(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Create a copy of the repository on your local machine
|
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 |
ScmProviderStub.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
ScmVersion version,
boolean recursive)
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.
|
CheckOutScmResult |
ScmProviderStub.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
ScmVersion version,
CommandParameters commandParameters) |
CheckOutScmResult |
ScmProvider.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
ScmVersion version,
CommandParameters commandParameters)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
AbstractScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion scmVersion,
CommandParameters commandParameters) |
CheckOutScmResult |
ScmProviderStub.checkOut(ScmRepository repository,
ScmFileSet fileSet,
String tag)
Create a copy of the repository on your local machine
|
CheckOutScmResult |
ScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
String tag)
|
CheckOutScmResult |
AbstractScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
String tag)
Deprecated.
|
CheckOutScmResult |
ScmProviderStub.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
String tag,
boolean recursive)
Create a copy of the repository on your local machine.
|
CheckOutScmResult |
ScmProvider.checkOut(ScmRepository scmRepository,
ScmFileSet scmFileSet,
String tag,
boolean recursive)
|
CheckOutScmResult |
AbstractScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
String tag,
boolean recursive)
Deprecated.
|
protected DiffScmResult |
AbstractScmProvider.diff(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
DiffScmResult |
ScmProviderStub.diff(ScmRepository scmRepository,
ScmFileSet scmFileSet,
ScmVersion startVersion,
ScmVersion endVersion)
Create a diff between two branch/tag/revision.
|
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.
|
DiffScmResult |
ScmProviderStub.diff(ScmRepository repository,
ScmFileSet fileSet,
String startRevision,
String endRevision)
Create a diff between two branch/tag/revision.
|
DiffScmResult |
ScmProvider.diff(ScmRepository scmRepository,
ScmFileSet scmFileSet,
String startRevision,
String endRevision)
|
DiffScmResult |
AbstractScmProvider.diff(ScmRepository repository,
ScmFileSet fileSet,
String startRevision,
String endRevision)
Deprecated.
|
protected EditScmResult |
AbstractScmProvider.edit(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
EditScmResult |
ScmProviderStub.edit(ScmRepository repository,
ScmFileSet fileSet)
Make a file editable.
|
EditScmResult |
ScmProvider.edit(ScmRepository repository,
ScmFileSet fileSet)
Make a file editable.
|
EditScmResult |
AbstractScmProvider.edit(ScmRepository repository,
ScmFileSet fileSet)
Make a file editable.
|
protected ExportScmResult |
AbstractScmProvider.export(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ExportScmResult |
ScmProviderStub.export(ScmRepository repository,
ScmFileSet fileSet)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmProvider.export(ScmRepository repository,
ScmFileSet fileSet)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
AbstractScmProvider.export(ScmRepository repository,
ScmFileSet fileSet)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmProviderStub.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Create an exported copy of the repository on your local machine
|
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 |
ScmProviderStub.export(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
String outputDirectory)
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
|
ExportScmResult |
ScmProviderStub.export(ScmRepository repository,
ScmFileSet fileSet,
String tag)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmProvider.export(ScmRepository repository,
ScmFileSet fileSet,
String tag)
|
ExportScmResult |
AbstractScmProvider.export(ScmRepository repository,
ScmFileSet fileSet,
String tag)
Deprecated.
|
ExportScmResult |
ScmProviderStub.export(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String outputDirectory)
Create an exported copy of the repository on your local machine
|
ExportScmResult |
ScmProvider.export(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String outputDirectory)
|
ExportScmResult |
AbstractScmProvider.export(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String outputDirectory)
Deprecated.
|
InfoScmResult |
ScmProviderStub.info(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
InfoScmResult |
ScmProvider.info(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
InfoScmResult |
AbstractScmProvider.info(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ListScmResult |
AbstractScmProvider.list(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
List each element (files and directories) of fileSet as they exist in the repository.
|
ListScmResult |
ScmProviderStub.list(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive,
ScmVersion version)
List each element (files and directories) of fileSet as they exist in the repository.
|
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.
|
ListScmResult |
ScmProviderStub.list(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive,
String tag)
List each element (files and directories) of fileSet as they exist in the repository.
|
ListScmResult |
ScmProvider.list(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive,
String tag)
|
ListScmResult |
AbstractScmProvider.list(ScmRepository repository,
ScmFileSet fileSet,
boolean recursive,
String tag)
List each element (files and directories) of fileSet as they exist in the repository.
|
protected LoginScmResult |
AbstractScmProvider.login(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected MkdirScmResult |
AbstractScmProvider.mkdir(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
Create directory/directories in the repository.
|
MkdirScmResult |
ScmProviderStub.mkdir(ScmRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal)
Create directory/directories in the repository.
|
MkdirScmResult |
ScmProvider.mkdir(ScmRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal)
Create directory/directories in the repository.
|
MkdirScmResult |
AbstractScmProvider.mkdir(ScmRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal)
Create directory/directories in the repository.
|
RemoteInfoScmResult |
ScmProviderStub.remoteInfo(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
RemoteInfoScmResult |
ScmProvider.remoteInfo(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
RemoteInfoScmResult |
AbstractScmProvider.remoteInfo(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected RemoveScmResult |
AbstractScmProvider.remove(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
RemoveScmResult |
ScmProviderStub.remove(ScmRepository repository,
ScmFileSet fileSet,
String message)
Removes the given files from the source control system
|
RemoveScmResult |
ScmProvider.remove(ScmRepository repository,
ScmFileSet fileSet,
String message)
Removes the given files from the source control system
|
RemoveScmResult |
AbstractScmProvider.remove(ScmRepository repository,
ScmFileSet fileSet,
String message)
Removes the given files from the source control system
|
protected StatusScmResult |
AbstractScmProvider.status(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
StatusScmResult |
ScmProviderStub.status(ScmRepository repository,
ScmFileSet fileSet)
Returns the status of the files in the source control system.
|
StatusScmResult |
ScmProvider.status(ScmRepository repository,
ScmFileSet fileSet)
Returns the status of the files in the source control system.
|
StatusScmResult |
AbstractScmProvider.status(ScmRepository repository,
ScmFileSet fileSet)
Returns the status of the files in the source control system.
|
protected TagScmResult |
AbstractScmProvider.tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
TagScmResult |
ScmProviderStub.tag(ScmRepository repository,
ScmFileSet fileSet,
String tag)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
ScmProvider.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName)
|
TagScmResult |
AbstractScmProvider.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
ScmProviderStub.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName,
ScmTagParameters scmTagParameters) |
TagScmResult |
ScmProvider.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName,
ScmTagParameters scmTagParameters)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
AbstractScmProvider.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName,
ScmTagParameters scmTagParameters)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
ScmProviderStub.tag(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String message)
Tag (or label in some systems) will tag the source file with a certain tag
|
TagScmResult |
ScmProvider.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName,
String message)
|
TagScmResult |
AbstractScmProvider.tag(ScmRepository repository,
ScmFileSet fileSet,
String tagName,
String message)
Tag (or label in some systems) will tag the source file with a certain tag
|
protected UnEditScmResult |
AbstractScmProvider.unedit(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
UnEditScmResult |
ScmProviderStub.unedit(ScmRepository repository,
ScmFileSet fileSet)
Make a file no longer editable.
|
UnEditScmResult |
ScmProvider.unedit(ScmRepository repository,
ScmFileSet fileSet)
Make a file no longer editable.
|
UnEditScmResult |
AbstractScmProvider.unedit(ScmRepository repository,
ScmFileSet fileSet)
Make a file no longer editable.
|
protected UpdateScmResult |
AbstractScmProvider.update(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
UpdateScmResult |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version)
Updates the copy on the local machine with the changes 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 |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
boolean runChangelog)
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 |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
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)
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 |
ScmProviderStub.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 |
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 |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
ScmVersion version,
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
|
UpdateScmResult |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
String tag)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag)
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag)
Deprecated.
|
UpdateScmResult |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
boolean runChangelog)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
boolean runChangelog)
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
boolean runChangelog)
Deprecated.
|
UpdateScmResult |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
Date lastUpdate)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
Date lastUpdate)
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
Date lastUpdate)
Deprecated.
|
UpdateScmResult |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
Date lastUpdate,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
Date lastUpdate,
String datePattern)
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
Date lastUpdate,
String datePattern)
Deprecated.
|
UpdateScmResult |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
Date lastUpdate,
String datePattern,
boolean runChangelog) |
UpdateScmResult |
ScmProviderStub.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String datePattern)
Updates the copy on the local machine with the changes in the repository
|
UpdateScmResult |
ScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String datePattern)
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
String tag,
String datePattern)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AbstractAccuRevExtractSourceCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract ScmResult |
AbstractAccuRevCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ScmResult |
AbstractAccuRevCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
AccuRevAddCommand.add(ScmProviderRepository repo,
ScmFileSet scmFileSet,
CommandParameters commandParameters) |
protected ScmResult |
AccuRevAddCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
Add.
|
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
AccuRevBlameCommand.blame(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected BlameScmResult |
AccuRevBlameCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
ChangeLogScmResult |
AccuRevChangeLogCommand.changelog(ScmProviderRepository repo,
ScmFileSet testFileSet,
CommandParameters params) |
protected ScmResult |
AccuRevChangeLogCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
CheckInScmResult |
AccuRevCheckInCommand.checkIn(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ScmResult |
AccuRevCheckInCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
CheckOutScmResult |
AccuRevCheckOutCommand.checkout(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
ExportScmResult |
AccuRevExportCommand.export(ScmProviderRepository repository,
ScmFileSet scmFileSet,
CommandParameters params) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AccuRevLoginCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
LoginScmResult |
AccuRevLoginCommand.login(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AccuRevRemoveCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
RemoveScmResult |
AccuRevRemoveCommand.remove(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AccuRevStatusCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
StatusScmResult |
AccuRevStatusCommand.status(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AccuRevTagCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
TagScmResult |
AccuRevTagCommand.tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AccuRevUpdateCommand.executeAccurevCommand(AccuRevScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
UpdateScmResult |
AccuRevUpdateCommand.update(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
BazaarScmProvider.add(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected BlameScmResult |
BazaarScmProvider.blame(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ChangeLogScmResult |
BazaarScmProvider.changelog(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckInScmResult |
BazaarScmProvider.checkin(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckOutScmResult |
BazaarScmProvider.checkout(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
DiffScmResult |
BazaarScmProvider.diff(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
static ScmResult |
BazaarUtils.execute(BazaarConsumer consumer,
ScmLogger logger,
File workingDir,
String[] cmdAndArgs) |
static ScmResult |
BazaarUtils.execute(File workingDir,
String[] cmdAndArgs) |
static org.apache.maven.scm.provider.bazaar.BazaarConfig.VersionConsumer |
BazaarConfig.getBazaarVersion(File workingDir) |
static int |
BazaarUtils.getCurrentRevisionNumber(ScmLogger logger,
File workingDir) |
static org.apache.maven.scm.provider.bazaar.BazaarConfig.VersionConsumer |
BazaarConfig.getPythonVersion(File workingDir) |
RemoveScmResult |
BazaarScmProvider.remove(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
StatusScmResult |
BazaarScmProvider.status(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
TagScmResult |
BazaarScmProvider.tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
UpdateScmResult |
BazaarScmProvider.update(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
BazaarAddCommand.executeAddCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
BazaarBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet workingDirectory,
String filename) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
BazaarChangeLogCommand.executeChangeLogCommand(ChangeLogScmRequest request) |
protected ChangeLogScmResult |
BazaarChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
BazaarCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
BazaarCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
protected DiffScmResult |
BazaarDiffCommand.executeDiffCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
BazaarRemoveCommand.executeRemoveCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message) |
Modifier and Type | Method and Description |
---|---|
StatusScmResult |
BazaarStatusCommand.executeStatusCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
BazaarTagCommand.executeTagCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String tagName,
ScmTagParameters scmTagParameters) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
BazaarUpdateCommand.executeUpdateCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
ClearCaseAddCommand.executeAddCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet scmFileSet,
String string,
boolean b) |
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
ClearCaseBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet workingDirectory,
String filename) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
ClearCaseChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
ClearCaseCheckInCommand.createCommandLine(ScmFileSet scmFileSet,
String message) |
protected CheckInScmResult |
ClearCaseCheckInCommand.executeCheckInCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet fileSet,
String message,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
ClearCaseCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
ClearCaseEditCommand.executeEditCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
ClearCaseRemoveCommand.executeRemoveCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet scmFileSet,
String string) |
Modifier and Type | Method and Description |
---|---|
protected StatusScmResult |
ClearCaseStatusCommand.executeStatusCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet scmFileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
ClearCaseTagCommand.executeTagCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet fileSet,
String tag,
ScmTagParameters scmTagParameters) |
protected ScmResult |
ClearCaseTagCommand.executeTagCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet fileSet,
String tag,
String message) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
ClearCaseUnEditCommand.executeUnEditCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
ClearCaseUpdateCommand.executeUpdateCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
AbstractCvsScmProvider.add(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected BlameScmResult |
AbstractCvsScmProvider.blame(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
BranchScmResult |
AbstractCvsScmProvider.branch(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ChangeLogScmResult |
AbstractCvsScmProvider.changelog(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckInScmResult |
AbstractCvsScmProvider.checkin(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckOutScmResult |
AbstractCvsScmProvider.checkout(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
DiffScmResult |
AbstractCvsScmProvider.diff(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ExportScmResult |
AbstractCvsScmProvider.export(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
static String |
AbstractCvsScmProvider.getRelativePath(File basedir,
File f) |
protected ListScmResult |
AbstractCvsScmProvider.list(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
List each element (files and directories) of fileSet as they exist in the repository.
|
LoginScmResult |
AbstractCvsScmProvider.login(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected MkdirScmResult |
AbstractCvsScmProvider.mkdir(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
Create directory/directories in the repository.
|
RemoveScmResult |
AbstractCvsScmProvider.remove(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
StatusScmResult |
AbstractCvsScmProvider.status(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
TagScmResult |
AbstractCvsScmProvider.tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected TagScmResult |
AbstractCvsScmProvider.tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters,
ScmTagParameters scmParameters) |
UpdateScmResult |
AbstractCvsScmProvider.update(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
static boolean |
CvsCommandUtils.isCvsNT() |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AbstractCvsAddCommand.executeAddCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
boolean binary) |
protected abstract AddScmResult |
AbstractCvsAddCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
List<ScmFile> addedFiles) |
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
AbstractCvsBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String filename) |
protected abstract BlameScmResult |
AbstractCvsBlameCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
CvsScmProviderRepository repository) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
AbstractCvsBranchCommand.executeBranchCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String branchName,
String message) |
protected abstract BranchScmResult |
AbstractCvsBranchCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
AbstractCvsChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
protected ChangeLogScmResult |
AbstractCvsChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion,
String datePattern) |
protected abstract ChangeLogScmResult |
AbstractCvsChangeLogCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
Date startDate,
Date endDate,
ScmVersion startVersion,
ScmVersion endVersion,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
AbstractCvsCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
ScmVersion version) |
protected abstract CheckInScmResult |
AbstractCvsCheckInCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
CvsScmProviderRepository repository,
File messageFile) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
AbstractCvsCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
The overriden
AbstractCvsCheckOutCommand.executeCommand(ScmProviderRepository, ScmFileSet, CommandParameters)
in this class will not call this method! |
ScmResult |
AbstractCvsCheckOutCommand.executeCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract CheckOutScmResult |
AbstractCvsCheckOutCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected abstract DiffScmResult |
AbstractCvsDiffCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
protected DiffScmResult |
AbstractCvsDiffCommand.executeDiffCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision) |
Modifier and Type | Method and Description |
---|---|
protected abstract ExportScmResult |
AbstractCvsExportCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
protected ExportScmResult |
AbstractCvsExportCommand.executeExportCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version,
String outputDirectory) |
Modifier and Type | Method and Description |
---|---|
protected abstract ListScmResult |
AbstractCvsListCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
protected ListScmResult |
AbstractCvsListCommand.executeListCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
boolean recursive,
ScmVersion version)
List contents of the remote repository
|
Modifier and Type | Method and Description |
---|---|
void |
CvsPass.execute()
Does the work.
|
LoginScmResult |
CvsLoginCommand.executeLoginCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
boolean |
CvsLoginCommand.isCvsNT() |
Modifier and Type | Method and Description |
---|---|
protected MkdirScmResult |
AbstractCvsMkdirCommand.executeMkdirCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal)
Creates directories in the remote repository.
|
Modifier and Type | Method and Description |
---|---|
protected abstract RemoveScmResult |
AbstractCvsRemoveCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
List<ScmFile> removedFiles) |
protected ScmResult |
AbstractCvsRemoveCommand.executeRemoveCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message) |
Modifier and Type | Method and Description |
---|---|
protected abstract StatusScmResult |
AbstractCvsStatusCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
protected StatusScmResult |
AbstractCvsStatusCommand.executeStatusCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected abstract TagScmResult |
AbstractCvsTagCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
ScmResult |
AbstractCvsTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
ScmTagParameters scmTagParameters) |
ScmResult |
AbstractCvsTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
String message) |
Modifier and Type | Method and Description |
---|---|
protected abstract UpdateScmResult |
AbstractCvsUpdateCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
UpdateScmResult |
AbstractCvsUpdateCommand.executeUpdateCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected AddScmResult |
CvsExeAddCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
List<ScmFile> addedFiles) |
Modifier and Type | Method and Description |
---|---|
protected BlameScmResult |
CvsExeBlameCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
CvsScmProviderRepository repository) |
Modifier and Type | Method and Description |
---|---|
protected BranchScmResult |
CvsExeBranchCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
CvsExeChangeLogCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
Date startDate,
Date endDate,
ScmVersion startVersion,
ScmVersion endVersion,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
CvsExeCheckInCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
CvsScmProviderRepository repository,
File messageFile) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
CvsExeCheckOutCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected DiffScmResult |
CvsExeDiffCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected ExportScmResult |
CvsExeExportCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected ListScmResult |
CvsExeListCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected RemoveScmResult |
CvsExeRemoveCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl,
List<ScmFile> removedFiles) |
Modifier and Type | Method and Description |
---|---|
protected StatusScmResult |
CvsExeStatusCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected TagScmResult |
CvsExeTagCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
CvsExeUpdateCommand.executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl) |
Modifier and Type | Method and Description |
---|---|
protected String |
GitExeScmProvider.getRepositoryURL(File path) |
Modifier and Type | Method and Description |
---|---|
static int |
GitCommandLineUtils.execute(org.codehaus.plexus.util.cli.Commandline cl,
org.codehaus.plexus.util.cli.CommandLineUtils.StringStreamConsumer stdout,
org.codehaus.plexus.util.cli.CommandLineUtils.StringStreamConsumer stderr,
ScmLogger logger) |
static int |
GitCommandLineUtils.execute(org.codehaus.plexus.util.cli.Commandline cl,
org.codehaus.plexus.util.cli.StreamConsumer consumer,
org.codehaus.plexus.util.cli.CommandLineUtils.StringStreamConsumer stderr,
ScmLogger logger) |
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
GitAddCommand.createCommandLine(File workingDirectory,
List<File> files) |
protected ScmResult |
GitAddCommand.executeAddCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
GitBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet workingDirectory,
String filename) |
protected ScmResult |
GitBlameCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet workingDirectory,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
GitBranchCommand.createPushCommandLine(GitScmProviderRepository repository,
ScmFileSet fileSet,
String branch) |
ScmResult |
GitBranchCommand.executeBranchCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String branch,
String message) |
static String |
GitBranchCommand.getCurrentBranch(ScmLogger logger,
GitScmProviderRepository repository,
ScmFileSet fileSet)
Helper function to detect the current branch
|
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
GitCheckInCommand.createCommitCommandLine(GitScmProviderRepository repository,
ScmFileSet fileSet,
File messageFile) |
static org.codehaus.plexus.util.cli.Commandline |
GitCheckInCommand.createPushCommandLine(ScmLogger logger,
GitScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion version) |
protected CheckInScmResult |
GitCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
GitCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
The overriden
GitCheckOutCommand.executeCommand(ScmProviderRepository, ScmFileSet, CommandParameters) in this class will
not call this method! |
ScmResult |
GitCheckOutCommand.executeCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
CommandParameters parameters)
For git, the given repository is a remote one.
|
Modifier and Type | Method and Description |
---|---|
protected DiffScmResult |
GitDiffCommand.executeDiffCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion) |
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
GitInfoCommand.createCommandLine(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ScmResult |
GitInfoCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
RemoteInfoScmResult |
GitRemoteInfoCommand.executeRemoteInfoCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
GitRemoveCommand.createCommandLine(File workingDirectory,
List<File> files) |
protected ScmResult |
GitRemoveCommand.executeRemoveCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message) |
Modifier and Type | Method and Description |
---|---|
protected StatusScmResult |
GitStatusCommand.executeStatusCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
static URI |
GitStatusCommand.getRelativeCWD(AbstractCommand caller,
ScmFileSet fileSet)
Get the dir relative to the repository root.
|
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
GitTagCommand.createPushCommandLine(GitScmProviderRepository repository,
ScmFileSet fileSet,
String tag) |
ScmResult |
GitTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
ScmTagParameters scmTagParameters) |
ScmResult |
GitTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
String message) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
GitUpdateCommand.executeUpdateCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion scmVersion) |
Modifier and Type | Method and Description |
---|---|
protected String |
JGitScmProvider.getRepositoryURL(File path) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
JGitAddCommand.executeAddCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
JGitBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet workingDirectory,
String filename) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
JGitBranchCommand.executeBranchCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String branch,
String message) |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
JGitCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
JGitCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
For git, the given repository is a remote one.
|
Modifier and Type | Method and Description |
---|---|
DiffScmResult |
JGitDiffCommand.callDiff(org.eclipse.jgit.api.Git git,
ScmVersion startRevision,
ScmVersion endRevision) |
protected DiffScmResult |
JGitDiffCommand.executeDiffCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
JGitInfoCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ListScmResult |
JGitListCommand.executeListCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
boolean recursive,
ScmVersion scmVersion) |
Modifier and Type | Method and Description |
---|---|
RemoteInfoScmResult |
JGitRemoteInfoCommand.executeRemoteInfoCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected StatusScmResult |
JGitStatusCommand.executeStatusCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
JGitTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
ScmTagParameters scmTagParameters) |
ScmResult |
JGitTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
String message) |
Constructor and Description |
---|
GitScmProviderRepository(String url) |
GitScmProviderRepository(String url,
String user,
String password) |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
HgScmProvider.add(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected BlameScmResult |
HgScmProvider.blame(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
BranchScmResult |
HgScmProvider.branch(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ChangeLogScmResult |
HgScmProvider.changelog(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckInScmResult |
HgScmProvider.checkin(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckOutScmResult |
HgScmProvider.checkout(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
DiffScmResult |
HgScmProvider.diff(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
static boolean |
HgUtils.differentOutgoingBranchFound(ScmLogger logger,
File workingDir,
String workingbranchName)
Check if there are outgoing changes on a different branch.
|
static ScmResult |
HgUtils.execute(File workingDir,
String[] cmdAndArgs) |
static ScmResult |
HgUtils.execute(HgConsumer consumer,
ScmLogger logger,
File workingDir,
String[] cmdAndArgs) |
static String |
HgUtils.getCurrentBranchName(ScmLogger logger,
File workingDir) |
static int |
HgUtils.getCurrentRevisionNumber(ScmLogger logger,
File workingDir) |
static org.apache.maven.scm.provider.hg.HgConfig.HgVersionConsumer |
HgConfig.getHgVersion(File workingDir) |
InfoScmResult |
HgScmProvider.info(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
returns result of hg id -i
|
protected ListScmResult |
HgScmProvider.list(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
RemoveScmResult |
HgScmProvider.remove(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
StatusScmResult |
HgScmProvider.status(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
TagScmResult |
HgScmProvider.tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
UpdateScmResult |
HgScmProvider.update(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
HgAddCommand.executeAddCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
HgBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet workingDirectory,
String filename) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
HgBranchCommand.executeBranchCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet fileSet,
String branch,
ScmBranchParameters scmBranchParameters)
default impl to provide backward comp
|
protected ScmResult |
HgBranchCommand.executeBranchCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet fileSet,
String branch,
String message) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
HgChangeLogCommand.executeChangeLogCommand(ChangeLogScmRequest request) |
protected ChangeLogScmResult |
HgChangeLogCommand.executeChangeLogCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
protected ChangeLogScmResult |
HgChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
HgCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
ScmVersion tag) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
HgCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion scmVersion,
boolean recursive,
boolean shallow)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
protected DiffScmResult |
HgDiffCommand.executeDiffCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
HgInfoCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ListScmResult |
HgListCommand.executeListCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
boolean recursive,
ScmVersion scmVersion)
List contents of the remote repository
|
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
HgRemoveCommand.executeRemoveCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message) |
Modifier and Type | Method and Description |
---|---|
StatusScmResult |
HgStatusCommand.executeStatusCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
HgTagCommand.executeTagCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet fileSet,
String tag,
ScmTagParameters scmTagParameters) |
protected ScmResult |
HgTagCommand.executeTagCommand(ScmProviderRepository scmProviderRepository,
ScmFileSet fileSet,
String tag,
String message) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
HgUpdateCommand.executeUpdateCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion tag) |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
JazzScmProvider.add(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected BlameScmResult |
JazzScmProvider.blame(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected BranchScmResult |
JazzScmProvider.branch(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ChangeLogScmResult |
JazzScmProvider.changelog(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected CheckInScmResult |
JazzScmProvider.checkin(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected CheckOutScmResult |
JazzScmProvider.checkout(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected DiffScmResult |
JazzScmProvider.diff(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected EditScmResult |
JazzScmProvider.edit(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ExportScmResult |
JazzScmProvider.export(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ListScmResult |
JazzScmProvider.list(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
List each element (files and directories) of fileSet as they exist in the repository.
|
protected StatusScmResult |
JazzScmProvider.status(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected TagScmResult |
JazzScmProvider.tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected UnEditScmResult |
JazzScmProvider.unedit(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected UpdateScmResult |
JazzScmProvider.update(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
int |
JazzScmCommand.execute(org.codehaus.plexus.util.cli.StreamConsumer out,
ErrorConsumer err) |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
JazzAddCommand.executeAddCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
protected ScmResult |
JazzAddCommand.executeAddCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
JazzBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String filename) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
JazzBranchCommand.executeBranchCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String branch,
String message) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
JazzChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
JazzCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion scmVersion) |
protected CheckInScmResult |
JazzCheckInCommand.executeCheckInCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
ScmVersion scmVersion) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
JazzCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion scmVersion,
boolean recursive,
boolean shallow)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
protected DiffScmResult |
JazzDiffCommand.executeDiffCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startRevision,
ScmVersion endRevision) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
JazzEditCommand.executeEditCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ListScmResult |
JazzListCommand.executeListCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
boolean recursive,
ScmVersion version)
List contents of the remote repository
|
Modifier and Type | Method and Description |
---|---|
StatusScmResult |
JazzStatusCommand.executeStatusCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
JazzTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
ScmTagParameters scmTagParameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
JazzUnEditCommand.executeUnEditCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
JazzUpdateCommand.executeUpdateCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
LocalScmProvider.add(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ChangeLogScmResult |
LocalScmProvider.changelog(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckInScmResult |
LocalScmProvider.checkin(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckOutScmResult |
LocalScmProvider.checkout(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ListScmResult |
LocalScmProvider.list(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
List each element (files and directories) of fileSet as they exist in the repository.
|
protected MkdirScmResult |
LocalScmProvider.mkdir(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
Create directory/directories in the repository.
|
StatusScmResult |
LocalScmProvider.status(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
TagScmResult |
LocalScmProvider.tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
UpdateScmResult |
LocalScmProvider.update(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
LocalAddCommand.executeAddCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
LocalChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
LocalCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
LocalCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
protected ListScmResult |
LocalListCommand.executeListCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
boolean recursive,
ScmVersion version)
List contents of the remote repository
|
Modifier and Type | Method and Description |
---|---|
protected MkdirScmResult |
LocalMkdirCommand.executeMkdirCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal) |
Modifier and Type | Method and Description |
---|---|
protected StatusScmResult |
LocalStatusCommand.executeStatusCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
LocalTagCommand.executeTagCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
ScmTagParameters scmTagParameters) |
protected ScmResult |
LocalTagCommand.executeTagCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String tagName,
String message) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
LocalUpdateCommand.executeUpdateCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
PerforceInfoCommand.executeCommand(ScmProviderRepository repo,
ScmFileSet scmFileSet,
CommandParameters commandParameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
PerforceAddCommand.executeAddCommand(ScmProviderRepository repo,
ScmFileSet files,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
PerforceBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet workingDirectory,
String filename) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
PerforceChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
protected ChangeLogScmResult |
PerforceChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern,
ScmVersion startVersion,
ScmVersion endVersion) |
protected ChangeLogScmResult |
PerforceChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion,
String datePattern) |
List<String> |
PerforceChangesConsumer.getChanges() |
List<ChangeSet> |
PerforceDescribeConsumer.getModifications() |
List<ChangeSet> |
PerforceChangeLogConsumer.getModifications() |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
PerforceCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet files,
String message,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
PerforceCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet files,
ScmVersion version,
boolean recursive,
boolean shallow)
Check out the depot code at
repo.getPath() into the target
directory at files.getBasedir . |
Modifier and Type | Method and Description |
---|---|
protected DiffScmResult |
PerforceDiffCommand.executeDiffCommand(ScmProviderRepository repo,
ScmFileSet files,
ScmVersion startRev,
ScmVersion endRev) |
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
PerforceEditCommand.createCommandLine(PerforceScmProviderRepository repo,
File workingDirectory,
ScmFileSet files) |
protected ScmResult |
PerforceEditCommand.executeEditCommand(ScmProviderRepository repo,
ScmFileSet files) |
Modifier and Type | Method and Description |
---|---|
LoginScmResult |
PerforceLoginCommand.executeLoginCommand(ScmProviderRepository repo,
ScmFileSet files,
CommandParameters params) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
PerforceRemoveCommand.executeRemoveCommand(ScmProviderRepository repo,
ScmFileSet files,
String message) |
Modifier and Type | Method and Description |
---|---|
protected StatusScmResult |
PerforceStatusCommand.executeStatusCommand(ScmProviderRepository repo,
ScmFileSet files) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
PerforceTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet files,
String tag,
ScmTagParameters scmTagParameters) |
protected ScmResult |
PerforceTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet files,
String tag,
String message) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
PerforceUnEditCommand.executeUnEditCommand(ScmProviderRepository repo,
ScmFileSet files) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
PerforceUpdateCommand.executeUpdateCommand(ScmProviderRepository repo,
ScmFileSet files,
ScmVersion scmVersion) |
String |
PerforceHaveConsumer.getHave() |
Modifier and Type | Method and Description |
---|---|
static String |
StarteamCommandLineUtils.displayCommandlineWithoutPassword(org.codehaus.plexus.util.cli.Commandline cl)
Hellper method to display command line without password
|
static int |
StarteamCommandLineUtils.executeCommandline(org.codehaus.plexus.util.cli.Commandline cl,
org.codehaus.plexus.util.cli.StreamConsumer consumer,
org.codehaus.plexus.util.cli.CommandLineUtils.StringStreamConsumer stderr,
ScmLogger logger) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
StarteamAddCommand.executeAddCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
StarteamChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
StarteamCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
StarteamCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
StarteamDiffCommand.createCommandLine(StarteamScmProviderRepository repo,
ScmFileSet workingDirectory,
ScmVersion startLabel,
ScmVersion endLabel) |
protected DiffScmResult |
StarteamDiffCommand.executeDiffCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
StarteamEditCommand.executeEditCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
StarteamRemoveCommand.executeRemoveCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message) |
Modifier and Type | Method and Description |
---|---|
protected StatusScmResult |
StarteamStatusCommand.executeStatusCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
StarteamTagCommand.createCommandLine(StarteamScmProviderRepository repo,
File workingDirectory,
String tag) |
protected ScmResult |
StarteamTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
ScmTagParameters scmTagParameters) |
protected ScmResult |
StarteamTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
String message) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
StarteamUnEditCommand.executeUnEditCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
StarteamUpdateCommand.executeUpdateCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
AbstractSvnScmProvider.add(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected BlameScmResult |
AbstractSvnScmProvider.blame(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected BranchScmResult |
AbstractSvnScmProvider.branch(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ChangeLogScmResult |
AbstractSvnScmProvider.changelog(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckInScmResult |
AbstractSvnScmProvider.checkin(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckOutScmResult |
AbstractSvnScmProvider.checkout(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
DiffScmResult |
AbstractSvnScmProvider.diff(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ScmResult |
AbstractSvnScmProvider.executeCommand(SvnCommand command,
ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ExportScmResult |
AbstractSvnScmProvider.export(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract String |
AbstractSvnScmProvider.getRepositoryURL(File path) |
InfoScmResult |
AbstractSvnScmProvider.info(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ListScmResult |
AbstractSvnScmProvider.list(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
List each element (files and directories) of fileSet as they exist in the repository.
|
MkdirScmResult |
AbstractSvnScmProvider.mkdir(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
Create directory/directories in the repository.
|
abstract boolean |
AbstractSvnScmProvider.remoteUrlExist(ScmProviderRepository repository,
CommandParameters parameters) |
RemoveScmResult |
AbstractSvnScmProvider.remove(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
StatusScmResult |
AbstractSvnScmProvider.status(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
TagScmResult |
AbstractSvnScmProvider.tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
UpdateScmResult |
AbstractSvnScmProvider.update(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected String |
SvnExeScmProvider.getRepositoryURL(File path) |
RemoteInfoScmResult |
SvnExeScmProvider.remoteInfo(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
boolean |
SvnExeScmProvider.remoteUrlExist(ScmProviderRepository repository,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
SvnAddCommand.executeAddCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
SvnBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet workingDirectory,
String filename) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
SvnBranchCommand.executeBranchCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String branch,
ScmBranchParameters scmBranchParameters) |
ScmResult |
SvnBranchCommand.executeBranchCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String branch,
String message) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
SvnChangeLogCommand.executeChangeLogCommand(ChangeLogScmRequest request) |
protected ChangeLogScmResult |
SvnChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern)
Deprecated.
|
protected ChangeLogScmResult |
SvnChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion,
String datePattern)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static org.codehaus.plexus.util.cli.Commandline |
SvnCheckInCommand.createCommandLine(SvnScmProviderRepository repository,
ScmFileSet fileSet,
File messageFile) |
protected CheckInScmResult |
SvnCheckInCommand.executeCheckInCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String message,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
SvnCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
protected DiffScmResult |
SvnDiffCommand.executeDiffCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion startVersion,
ScmVersion endVersion) |
Modifier and Type | Method and Description |
---|---|
protected ExportScmResult |
SvnExeExportCommand.executeExportCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version,
String outputDirectory) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
SvnInfoCommand.executeCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
InfoScmResult |
SvnInfoCommand.executeInfoCommand(SvnScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters,
boolean recursive,
String revision) |
Modifier and Type | Method and Description |
---|---|
protected ListScmResult |
SvnListCommand.executeListCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
boolean recursive,
ScmVersion version)
List contents of the remote repository
|
Modifier and Type | Method and Description |
---|---|
protected MkdirScmResult |
SvnMkdirCommand.executeMkdirCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
boolean createInLocal)
Creates directories in the remote repository.
|
Modifier and Type | Method and Description |
---|---|
RemoteInfoScmResult |
SvnRemoteInfoCommand.executeRemoteInfoCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
boolean |
SvnRemoteInfoCommand.remoteUrlExist(ScmProviderRepository repository,
CommandParameters parameters) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
SvnRemoveCommand.executeRemoveCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message) |
Modifier and Type | Method and Description |
---|---|
protected StatusScmResult |
SvnStatusCommand.executeStatusCommand(ScmProviderRepository repo,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
ScmResult |
SvnTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
ScmTagParameters scmTagParameters) |
ScmResult |
SvnTagCommand.executeTagCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
String tag,
String message) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
SvnUpdateCommand.executeUpdateCommand(ScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
SynergyAddCommand.executeAddCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
protected ChangeLogScmResult |
SynergyChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
protected CheckInScmResult |
SynergyCheckInCommand.executeCheckInCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
protected CheckOutScmResult |
SynergyCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
SynergyEditCommand.executeEditCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
SynergyRemoveCommand.executeRemoveCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message) |
Modifier and Type | Method and Description |
---|---|
protected StatusScmResult |
SynergyStatusCommand.executeStatusCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
SynergyTagCommand.executeTagCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String tag,
ScmTagParameters scmTagParameters) |
protected ScmResult |
SynergyTagCommand.executeTagCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String tag,
String message) |
Modifier and Type | Method and Description |
---|---|
protected ScmResult |
SynergyUnEditCommand.executeUnEditCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
protected UpdateScmResult |
SynergyUpdateCommand.executeUpdateCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion version) |
Modifier and Type | Method and Description |
---|---|
void |
SynergyTaskManager.checkinDefaultTask(ScmLogger logger,
String comment,
String ccmAddr)
Check in (that is: complete) the default task.
|
static void |
SynergyUtil.checkinDefaultTask(ScmLogger logger,
String comment,
String ccmAddr)
Checkin the default task.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.checkinFiles(List<File> files,
String comment,
String ccmAddr)
Create commandline to checkin a fileset
|
static void |
SynergyUtil.checkinFiles(ScmLogger logger,
List<File> files,
String comment,
String ccmAddr)
Checkin a file set.
|
static void |
SynergyUtil.checkinProject(ScmLogger logger,
String projectSpec,
String comment,
String ccmAddr)
Checkin a given project.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.checkinProject(String projectSpec,
String comment,
String ccmAddr)
Create commandline to checkin a project
|
static void |
SynergyUtil.checkinTask(ScmLogger logger,
int taskNumber,
String comment,
String ccmAddr)
Checkin a task.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.checkinTask(String taskSpecs,
String comment,
String ccmAddr)
Create command line for checkin a task
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.checkoutFiles(List<File> files,
String ccmAddr)
Create commandline to checkout a fileset.
|
static void |
SynergyUtil.checkoutFiles(ScmLogger logger,
List<File> files,
String ccmAddr)
Checkout given files or directory.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.checkoutProject(File directory,
String projectSpec,
ScmVersion version,
String purpose,
String release,
String ccmAddr)
Create commandline to checkout a project
|
static void |
SynergyUtil.checkoutProject(ScmLogger logger,
File directory,
String projectSpec,
ScmVersion version,
String purpose,
String release,
String ccmAddr)
Checkout a given project.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.create(List<File> files,
String message,
String ccmAddr)
Create command line for adding a fileset to a project
|
static void |
SynergyUtil.create(ScmLogger logger,
File file,
String message,
String ccmAddr)
Add new file to Synergy database.
|
static void |
SynergyUtil.createBaseline(ScmLogger logger,
String projectSpec,
String name,
String release,
String purpose,
String ccmAddr)
Create a baseline.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.createBaseline(String projectSpec,
String name,
String release,
String purpose,
String ccmAddr)
Create command line for creating a baseline.
|
int |
SynergyTaskManager.createTask(ScmLogger logger,
String synopsis,
String release,
boolean defaultTask,
String ccmAddr)
If necessary create a new task.
|
static int |
SynergyUtil.createTask(ScmLogger logger,
String synopsis,
String release,
boolean defaultTask,
String ccmAddr)
Create new task.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.createTask(String synopsis,
String release,
boolean defaultTask,
String ccmAddr)
Create command line for creating a task
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.delete(List<File> files,
String ccmAddr,
boolean replace)
Create command line for deleting file(s).
|
static void |
SynergyUtil.delete(ScmLogger logger,
File file,
String ccmAddr,
boolean replace)
Delete file from Synergy database.
|
static String |
SynergyUtil.delimiter(ScmLogger logger,
String ccmAddr)
Get Database delimiter
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.delimiter(String ccmAddr)
Create commandline to get Synergy database delimiter
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.dir(File directory,
String format,
String ccmAddr)
Create command line to perform a dir on the directory.
|
protected static int |
SynergyUtil.executeSynergyCommand(ScmLogger logger,
org.codehaus.plexus.util.cli.Commandline cl,
org.codehaus.plexus.util.cli.CommandLineUtils.StringStreamConsumer stderr,
org.codehaus.plexus.util.cli.StreamConsumer stdout,
boolean failOnError)
Execute a command line for Synergy.
|
static List<SynergyTask> |
SynergyUtil.getCompletedTasks(ScmLogger logger,
String projectSpec,
Date startDate,
Date endDate,
String ccmAddr)
Get a list of all tasks which are contained in all folders in the
reconfigure properties of the specified project and were completed after
startDate and before endDate.
|
static int |
SynergyUtil.getDefaultTask(ScmLogger logger,
String ccmAddr)
Get the number of the current (ie default) task.
|
static List<ChangeFile> |
SynergyUtil.getModifiedObjects(ScmLogger logger,
int numTask,
String ccmAddr)
Populate the object list of a Modification by querying for objects
associated with the task.
|
static File |
SynergyUtil.getWorkArea(ScmLogger logger,
String projectSpec,
String ccmAddr)
Get the work area of a given project.
|
static List<String> |
SynergyUtil.getWorkingFiles(ScmLogger logger,
String projectSpec,
String release,
String ccmAddr)
Get working file(s) in a given project.
|
static String |
SynergyUtil.getWorkingProject(ScmLogger logger,
String projectSpec,
String username,
String ccmAddr)
Get a working project whose predecessor is given.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.query(String query,
String format,
String ccmAddr)
Create commandline for query.
|
static void |
SynergyUtil.reconcileUdb(ScmLogger logger,
String projectSpec,
String ccmAddr)
Reconcile a project with -udb option.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.reconcileUdb(String projectSpec,
String ccmAddr)
Create command line to reconcile a project with udb option.
|
static void |
SynergyUtil.reconcileUwa(ScmLogger logger,
String projectSpec,
String ccmAddr)
Reconcile a project with -uwa option.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.reconcileUwa(String projectSpec,
String ccmAddr)
Create command line to reconcile a project with uwa option.
|
static void |
SynergyUtil.reconfigure(ScmLogger logger,
String projectSpec,
String ccmAddr)
Reconfigure a project.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.reconfigure(String projectSpec,
String ccmAddr)
Create commandline to reconfigure a project.
|
static void |
SynergyUtil.reconfigureProperties(ScmLogger logger,
String projectSpec,
String ccmAddr)
Reconfigure properties of a project.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.reconfigureProperties(String projectSpec,
String ccmAddr)
Create commandline to reconfigure properties of a project.
|
static String |
SynergyUtil.removePrefix(File prefix,
File file)
Remove prefix path from a path.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.setDefaultTask(int task,
String ccmAddr)
Create commandline to set current (i.e.
|
static void |
SynergyUtil.setDefaultTask(ScmLogger logger,
int task,
String ccmAddr)
Set the current (ie default) task.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.showDefaultTask(String ccmAddr)
Create commandline to get current (i.e.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.showTaskObjects(int taskNumber,
String format,
String ccmAddr)
Create commandline for getting list of objects in a task.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.showWorkArea(String projectSpec,
String ccmAddr)
Create commandline to get workarea informations for a given project.
|
static String |
SynergyUtil.start(ScmLogger logger,
String username,
String password,
SynergyRole role)
Start a session Synergy
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.start(String username,
String password,
SynergyRole role)
Create commandline to start a Synergy session
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.startRemote(String username,
String password,
SynergyRole role)
Create commandline to start a remote Synergy session
|
static void |
SynergyUtil.stop(ScmLogger logger,
String ccmAddr)
Stop a ccm session.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.stop(String ccmAddr)
Create commandline to stop a Synergy session
|
static void |
SynergyUtil.synchronize(ScmLogger logger,
String projectSpec,
String ccmAddr)
Synchronize a given project.
|
static org.codehaus.plexus.util.cli.Commandline |
SynergyCCM.synchronize(String projectSpec,
String ccmAddr)
Create commandline to synchronize a project
|
Modifier and Type | Method and Description |
---|---|
BlameScmResult |
TfsBlameCommand.executeBlameCommand(ScmProviderRepository repo,
ScmFileSet workingDirectory,
String filename) |
Modifier and Type | Method and Description |
---|---|
static int |
VssCommandLineUtils.executeCommandline(org.codehaus.plexus.util.cli.Commandline cl,
org.codehaus.plexus.util.cli.StreamConsumer consumer,
org.codehaus.plexus.util.cli.CommandLineUtils.StringStreamConsumer stderr,
ScmLogger logger) |
String |
VssParameterContext.getLocalpath()
Gets the localpath string.
|
String |
VssParameterContext.getVersionDate()
Gets the Version date string.
|
Modifier and Type | Method and Description |
---|---|
org.codehaus.plexus.util.cli.Commandline |
VssAddCommand.buildCmdLine(VssScmProviderRepository repo,
ScmFileSet fileSet) |
org.codehaus.plexus.util.cli.Commandline |
VssAddCommand.buildSetCurrentProjectCmdLine(VssScmProviderRepository repo) |
protected ScmResult |
VssAddCommand.executeAddCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
boolean binary) |
Modifier and Type | Method and Description |
---|---|
org.codehaus.plexus.util.cli.Commandline |
VssHistoryCommand.buildCmdLine(VssScmProviderRepository repo,
ScmFileSet fileSet,
Date startDate,
Date endDate) |
protected ChangeLogScmResult |
VssHistoryCommand.executeChangeLogCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
Date startDate,
Date endDate,
ScmBranch branch,
String datePattern) |
Modifier and Type | Method and Description |
---|---|
List<org.codehaus.plexus.util.cli.Commandline> |
VssCheckInCommand.buildCmdLine(VssScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version) |
protected CheckInScmResult |
VssCheckInCommand.executeCheckInCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String message,
ScmVersion scmVersion)
(non-Javadoc)
|
Modifier and Type | Method and Description |
---|---|
org.codehaus.plexus.util.cli.Commandline |
VssCheckOutCommand.buildCmdLine(VssScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version) |
protected CheckOutScmResult |
VssCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion version,
boolean recursive,
boolean shallow)
Execute Check out command line.
|
Modifier and Type | Method and Description |
---|---|
List<org.codehaus.plexus.util.cli.Commandline> |
VssEditCommand.buildCmdLine(VssScmProviderRepository repo,
ScmFileSet fileSet) |
protected ScmResult |
VssEditCommand.executeEditCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
org.codehaus.plexus.util.cli.Commandline |
VssStatusCommand.buildCmdLine(VssScmProviderRepository repo,
ScmFileSet fileSet) |
protected StatusScmResult |
VssStatusCommand.executeStatusCommand(ScmProviderRepository repository,
ScmFileSet fileSet) |
Modifier and Type | Method and Description |
---|---|
org.codehaus.plexus.util.cli.Commandline |
VssTagCommand.buildCmdLine(VssScmProviderRepository repo,
ScmFileSet fileSet,
String tagName,
String message) |
protected ScmResult |
VssTagCommand.executeTagCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String tagName,
ScmTagParameters scmTagParameters) |
protected ScmResult |
VssTagCommand.executeTagCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
String tagName,
String message) |
Modifier and Type | Method and Description |
---|---|
org.codehaus.plexus.util.cli.Commandline |
VssUpdateCommand.buildCmdLine(VssScmProviderRepository repo,
ScmFileSet fileSet,
ScmVersion version) |
protected UpdateScmResult |
VssUpdateCommand.executeUpdateCommand(ScmProviderRepository repository,
ScmFileSet fileSet,
ScmVersion version) |
Modifier and Type | Class and Description |
---|---|
class |
ScmRepositoryException |
Copyright © 2003–2021 The Apache Software Foundation. All rights reserved.