Uses of Class
org.apache.maven.scm.ScmException
-
-
Uses of ScmException in org.apache.maven.scm
Subclasses of ScmException in org.apache.maven.scm Modifier and Type Class Description class
NoSuchCommandScmException
Methods in org.apache.maven.scm that throw ScmException Modifier and Type Method 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.java.util.Date
CommandParameters. getDate(CommandParameter parameter)
Return the parameter value as Date.java.util.Date
CommandParameters. getDate(CommandParameter parameter, java.util.Date defaultValue)
Return the parameter value as String or the default value if it doesn't exist.java.io.File[]
CommandParameters. getFileArray(CommandParameter parameter)
java.io.File[]
CommandParameters. getFileArray(CommandParameter parameter, java.io.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.java.lang.String
CommandParameters. getString(CommandParameter parameter)
Return the parameter value as String.java.lang.String
CommandParameters. getString(CommandParameter parameter, java.lang.String defaultValue)
Return the parameter value or the default value if it doesn't exist.void
CommandParameters. setDate(CommandParameter parameter, java.util.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, java.lang.String value)
Set a parameter value. -
Uses of ScmException in org.apache.maven.scm.command
Methods in org.apache.maven.scm.command that throw ScmException Modifier and Type Method Description ScmResult
AbstractCommand. execute(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
ScmResult
Command. execute(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract ScmResult
AbstractCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.command.add
Methods in org.apache.maven.scm.command.add that throw ScmException Modifier and Type Method Description protected abstract ScmResult
AbstractAddCommand. executeAddCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, boolean binary)
protected ScmResult
AbstractAddCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.command.blame
Methods in org.apache.maven.scm.command.blame that throw ScmException Modifier and Type Method Description abstract BlameScmResult
AbstractBlameCommand. executeBlameCommand(ScmProviderRepository repo, ScmFileSet workingDirectory, java.lang.String filename)
protected ScmResult
AbstractBlameCommand. executeCommand(ScmProviderRepository repository, ScmFileSet workingDirectory, CommandParameters parameters)
java.lang.String
BlameScmRequest. getFilename()
void
BlameScmRequest. setFilename(java.lang.String filename)
void
BlameScmRequest. setIgnoreWhitespace(boolean ignoreWhitespace)
-
Uses of ScmException in org.apache.maven.scm.command.branch
Methods in org.apache.maven.scm.command.branch that throw ScmException Modifier and Type Method Description protected abstract ScmResult
AbstractBranchCommand. executeBranchCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String branchName, java.lang.String message)
protected ScmResult
AbstractBranchCommand. executeBranchCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String branchName, ScmBranchParameters scmBranchParameters)
default impl to provide backward compScmResult
AbstractBranchCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.command.changelog
Methods in org.apache.maven.scm.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
AbstractChangeLogCommand. executeChangeLogCommand(ChangeLogScmRequest request)
protected abstract ChangeLogScmResult
AbstractChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
Deprecated.protected ChangeLogScmResult
AbstractChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String datePattern)
Deprecated.protected ChangeLogScmResult
AbstractChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
Deprecated.ScmResult
AbstractChangeLogCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
ScmResult
ChangeLogCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
java.lang.String
ChangeLogScmRequest. getDatePattern()
java.util.Date
ChangeLogScmRequest. getEndDate()
ScmVersion
ChangeLogScmRequest. getEndRevision()
java.lang.Integer
ChangeLogScmRequest. getLimit()
int
ChangeLogScmRequest. getNumDays()
ScmVersion
ChangeLogScmRequest. getRevision()
ScmBranch
ChangeLogScmRequest. getScmBranch()
java.util.Date
ChangeLogScmRequest. getStartDate()
ScmVersion
ChangeLogScmRequest. getStartRevision()
void
ChangeLogScmRequest. setDatePattern(java.lang.String datePattern)
void
ChangeLogScmRequest. setDateRange(java.util.Date startDate, java.util.Date endDate)
void
ChangeLogScmRequest. setEndDate(java.util.Date endDate)
void
ChangeLogScmRequest. setEndRevision(ScmVersion endRevision)
void
ChangeLogScmRequest. setLimit(java.lang.Integer limit)
void
ChangeLogScmRequest. setNumDays(int numDays)
void
ChangeLogScmRequest. setRevision(ScmVersion revision)
void
ChangeLogScmRequest. setScmBranch(ScmBranch scmBranch)
void
ChangeLogScmRequest. setStartDate(java.util.Date startDate)
void
ChangeLogScmRequest. setStartRevision(ScmVersion startRevision)
-
Uses of ScmException in org.apache.maven.scm.command.checkin
Methods in org.apache.maven.scm.command.checkin that throw ScmException Modifier and Type Method Description protected abstract CheckInScmResult
AbstractCheckInCommand. executeCheckInCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, ScmVersion scmVersion)
ScmResult
AbstractCheckInCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.command.checkout
Methods in org.apache.maven.scm.command.checkout that throw ScmException Modifier and Type Method 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)
-
Uses of ScmException in org.apache.maven.scm.command.diff
Methods in org.apache.maven.scm.command.diff that throw ScmException Modifier and Type Method Description ScmResult
AbstractDiffCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract DiffScmResult
AbstractDiffCommand. executeDiffCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision)
-
Uses of ScmException in org.apache.maven.scm.command.edit
Methods in org.apache.maven.scm.command.edit that throw ScmException Modifier and Type Method Description ScmResult
AbstractEditCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract ScmResult
AbstractEditCommand. executeEditCommand(ScmProviderRepository repository, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.command.export
Methods in org.apache.maven.scm.command.export that throw ScmException Modifier and Type Method Description protected ScmResult
AbstractExportCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract ExportScmResult
AbstractExportCommand. executeExportCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, java.lang.String outputDirectory)
-
Uses of ScmException in org.apache.maven.scm.command.fileinfo
Methods in org.apache.maven.scm.command.fileinfo that throw ScmException Modifier and Type Method Description ScmResult
AbstractFileInfoCommand. executeCommand(ScmProviderRepository repository, java.io.File workingDirectory, CommandParameters parameters)
protected abstract ScmResult
AbstractFileInfoCommand. executeFileInfoCommand(ScmProviderRepository repository, java.io.File workingDirectory, java.lang.String filename)
-
Uses of ScmException in org.apache.maven.scm.command.list
Methods in org.apache.maven.scm.command.list that throw ScmException Modifier and Type Method 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 -
Uses of ScmException in org.apache.maven.scm.command.lock
Methods in org.apache.maven.scm.command.lock that throw ScmException Modifier and Type Method Description ScmResult
AbstractLockCommand. executeCommand(ScmProviderRepository repository, java.io.File workingDirectory, CommandParameters parameters)
protected abstract ScmResult
AbstractLockCommand. executeLockCommand(ScmProviderRepository repository, java.io.File workingDirectory, java.lang.String filename)
-
Uses of ScmException in org.apache.maven.scm.command.login
Methods in org.apache.maven.scm.command.login that throw ScmException Modifier and Type Method Description protected ScmResult
AbstractLoginCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
abstract LoginScmResult
AbstractLoginCommand. executeLoginCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.command.mkdir
Methods in org.apache.maven.scm.command.mkdir that throw ScmException Modifier and Type Method Description protected ScmResult
AbstractMkdirCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract MkdirScmResult
AbstractMkdirCommand. executeMkdirCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
Creates directories in the remote repository. -
Uses of ScmException in org.apache.maven.scm.command.remoteinfo
Methods in org.apache.maven.scm.command.remoteinfo that throw ScmException Modifier and Type Method Description protected ScmResult
AbstractRemoteInfoCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
abstract RemoteInfoScmResult
AbstractRemoteInfoCommand. executeRemoteInfoCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.command.remove
Methods in org.apache.maven.scm.command.remove that throw ScmException Modifier and Type Method Description protected ScmResult
AbstractRemoveCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract ScmResult
AbstractRemoveCommand. executeRemoveCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message)
-
Uses of ScmException in org.apache.maven.scm.command.status
Methods in org.apache.maven.scm.command.status that throw ScmException Modifier and Type Method Description ScmResult
AbstractStatusCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract StatusScmResult
AbstractStatusCommand. executeStatusCommand(ScmProviderRepository repository, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.command.tag
Methods in org.apache.maven.scm.command.tag that throw ScmException Modifier and Type Method Description ScmResult
AbstractTagCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected ScmResult
AbstractTagCommand. executeTagCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tagName, java.lang.String message)
protected abstract ScmResult
AbstractTagCommand. executeTagCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tagName, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.command.unedit
Methods in org.apache.maven.scm.command.unedit that throw ScmException Modifier and Type Method Description ScmResult
AbstractUnEditCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract ScmResult
AbstractUnEditCommand. executeUnEditCommand(ScmProviderRepository repository, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.command.unlock
Methods in org.apache.maven.scm.command.unlock that throw ScmException Modifier and Type Method Description ScmResult
AbstractUnlockCommand. executeCommand(ScmProviderRepository repository, java.io.File workingDirectory, CommandParameters parameters)
protected abstract ScmResult
AbstractUnlockCommand. executeUnlockCommand(ScmProviderRepository repository, java.io.File workingDirectory)
-
Uses of ScmException in org.apache.maven.scm.command.update
Methods in org.apache.maven.scm.command.update that throw ScmException Modifier and Type Method Description ScmResult
AbstractUpdateCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract UpdateScmResult
AbstractUpdateCommand. executeUpdateCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)
-
Uses of ScmException in org.apache.maven.scm.manager
Subclasses of ScmException in org.apache.maven.scm.manager Modifier and Type Class Description class
NoSuchScmProviderException
Methods in org.apache.maven.scm.manager that throw ScmException Modifier and Type Method Description AddScmResult
AbstractScmManager. add(ScmRepository repository, ScmFileSet fileSet)
Adds the given files to the source control systemAddScmResult
AbstractScmManager. add(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Adds the given files to the source control systemAddScmResult
ScmManager. add(ScmRepository repository, ScmFileSet fileSet)
Adds the given files to the source control systemAddScmResult
ScmManager. add(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Adds the given files to the source control systemAddScmResult
ScmManagerStub. add(ScmRepository repository, ScmFileSet fileSet)
Adds the given files to the source control systemAddScmResult
ScmManagerStub. add(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Adds the given files to the source control systemBlameScmResult
AbstractScmManager. blame(BlameScmRequest blameScmRequest)
BlameScmResult
AbstractScmManager. blame(ScmRepository repository, ScmFileSet fileSet, java.lang.String filename)
Returns the blame of specified fileBlameScmResult
ScmManager. blame(BlameScmRequest blameScmRequest)
BlameScmResult
ScmManager. blame(ScmRepository repository, ScmFileSet fileSet, java.lang.String filename)
Returns the blame of specified fileBlameScmResult
ScmManagerStub. blame(BlameScmRequest blameScmRequest)
BlameScmResult
ScmManagerStub. blame(ScmRepository repository, ScmFileSet fileSet, java.lang.String filename)
Returns the blame of specified fileBranchScmResult
AbstractScmManager. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
AbstractScmManager. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName, java.lang.String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
ScmManager. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
ScmManager. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName, java.lang.String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
ScmManagerStub. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
ScmManagerStub. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName, java.lang.String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameChangeLogScmResult
AbstractScmManager. changeLog(ChangeLogScmRequest scmRequest)
Returns the changes that have happend in the source control system in a certain period of time.ChangeLogScmResult
AbstractScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch)
Returns the changes that have happend in the source control system in a certain period of time.ChangeLogScmResult
AbstractScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch, java.lang.String datePattern)
Returns the changes that have happend in the source control system in a certain period of time.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
AbstractScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, java.lang.String datePattern)
Returns the changes that have happend in the source control system between two tags.ChangeLogScmResult
ScmManager. changeLog(ChangeLogScmRequest scmRequest)
Returns the changes that have happend in the source control system in a certain period of time.ChangeLogScmResult
ScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch)
Deprecated.ChangeLogScmResult
ScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch, java.lang.String datePattern)
Deprecated.ChangeLogScmResult
ScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
Deprecated.ChangeLogScmResult
ScmManager. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, java.lang.String datePattern)
Deprecated.ChangeLogScmResult
ScmManagerStub. changeLog(ChangeLogScmRequest request)
Returns the changes that have happend in the source control system in a certain period of time.ChangeLogScmResult
ScmManagerStub. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.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, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch, java.lang.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
ScmManagerStub. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, java.lang.String datePattern)
Returns the changes that have happend in the source control system between two tags.CheckInScmResult
AbstractScmManager. checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
AbstractScmManager. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
ScmManager. checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
ScmManager. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
ScmManagerStub. checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
ScmManagerStub. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, java.lang.String message)
Save the changes you have done into the repository.CheckOutScmResult
AbstractScmManager. checkOut(ScmRepository repository, ScmFileSet fileSet)
Create a copy of the repository on your local machineCheckOutScmResult
AbstractScmManager. checkOut(ScmRepository repository, ScmFileSet fileSet, boolean recursive)
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 machineCheckOutScmResult
AbstractScmManager. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean recursive)
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 machineCheckOutScmResult
ScmManager. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, boolean recursive)
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 machineCheckOutScmResult
ScmManager. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion version, boolean recursive)
Create a copy of the repository on your local machine.CheckOutScmResult
ScmManagerStub. checkOut(ScmRepository repository, ScmFileSet fileSet)
Create a copy of the repository on your local machineCheckOutScmResult
ScmManagerStub. 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 machineCheckOutScmResult
ScmManagerStub. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean recursive)
Create a copy of the repository on your local machine.DiffScmResult
AbstractScmManager. diff(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
Create a diff between two branch/tag/revision.DiffScmResult
ScmManager. diff(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion startVersion, ScmVersion endVersion)
Create a diff between two branch/tag/revision.DiffScmResult
ScmManagerStub. diff(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
Create a diff between two branch/tag/revision.EditScmResult
AbstractScmManager. edit(ScmRepository repository, ScmFileSet fileSet)
Make a file editable.EditScmResult
ScmManager. edit(ScmRepository repository, ScmFileSet fileSet)
Make a file editable.EditScmResult
ScmManagerStub. edit(ScmRepository repository, ScmFileSet fileSet)
Make a file editable.ExportScmResult
AbstractScmManager. export(ScmRepository repository, ScmFileSet fileSet)
Create an exported copy of the repository on your local machineExportScmResult
AbstractScmManager. export(ScmRepository repository, ScmFileSet fileSet, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineExportScmResult
AbstractScmManager. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Create an exported copy of the repository on your local machineExportScmResult
AbstractScmManager. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineExportScmResult
ScmManager. export(ScmRepository repository, ScmFileSet fileSet)
Create an exported copy of the repository on your local machineExportScmResult
ScmManager. export(ScmRepository repository, ScmFileSet fileSet, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineExportScmResult
ScmManager. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Create an exported copy of the repository on your local machineExportScmResult
ScmManager. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineExportScmResult
ScmManagerStub. export(ScmRepository repository, ScmFileSet fileSet)
Create an exported copy of the repository on your local machineExportScmResult
ScmManagerStub. export(ScmRepository repository, ScmFileSet fileSet, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineExportScmResult
ScmManagerStub. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Create an exported copy of the repository on your local machineExportScmResult
ScmManagerStub. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineListScmResult
AbstractScmManager. list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion version)
List each element (files and directories) of fileSet as they exist in the repository.ListScmResult
ScmManager. list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion version)
List each element (files and directories) of fileSet as they exist in the repository.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.MkdirScmResult
AbstractScmManager. mkdir(ScmRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
Create new directory/directories in the repository.MkdirScmResult
ScmManager. mkdir(ScmRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
Create new directory/directories in the repository.MkdirScmResult
ScmManagerStub. mkdir(ScmRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
Create new directory/directories in the repository.RemoveScmResult
AbstractScmManager. remove(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Removes the given files from the source control systemRemoveScmResult
ScmManager. remove(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Removes the given files from the source control systemRemoveScmResult
ScmManagerStub. remove(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Removes the given files from the source control systemStatusScmResult
AbstractScmManager. 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
ScmManagerStub. status(ScmRepository repository, ScmFileSet fileSet)
Returns the status of the files in the source control system.TagScmResult
AbstractScmManager. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
AbstractScmManager. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName, java.lang.String message)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
ScmManager. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
ScmManager. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName, java.lang.String message)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
ScmManagerStub. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
ScmManagerStub. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName, java.lang.String message)
Tag (or label in some systems) will tag the source file with a certain tagUnEditScmResult
AbstractScmManager. 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
ScmManagerStub. unedit(ScmRepository repository, ScmFileSet fileSet)
Make a file no longer editable.UpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManager. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmManagerStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repository -
Uses of ScmException in org.apache.maven.scm.provider
Methods in org.apache.maven.scm.provider that throw ScmException Modifier and Type Method Description AddScmResult
AbstractScmProvider. add(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
AddScmResult
AbstractScmProvider. add(ScmRepository repository, ScmFileSet fileSet)
Adds the given files to the source control systemAddScmResult
AbstractScmProvider. add(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Adds the given files to the source control systemAddScmResult
AbstractScmProvider. add(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
AddScmResult
ScmProvider. add(ScmRepository repository, ScmFileSet fileSet)
Adds the given files to the source control systemAddScmResult
ScmProvider. add(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Adds the given files to the source control systemAddScmResult
ScmProvider. add(ScmRepository repository, ScmFileSet fileSet, CommandParameters commandParameters)
Adds the given files to the source control systemAddScmResult
ScmProviderStub. add(ScmRepository repository, ScmFileSet fileSet)
Adds the given files to the source control systemAddScmResult
ScmProviderStub. add(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Adds the given files to the source control systemAddScmResult
ScmProviderStub. add(ScmRepository repository, ScmFileSet fileSet, CommandParameters commandParameters)
BlameScmResult
AbstractScmProvider. blame(BlameScmRequest blameScmRequest)
protected BlameScmResult
AbstractScmProvider. blame(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
BlameScmResult
AbstractScmProvider. blame(ScmRepository repository, ScmFileSet fileSet, java.lang.String filename)
Returns the blame of specified fileBlameScmResult
ScmProvider. blame(BlameScmRequest blameScmRequest)
BlameScmResult
ScmProvider. blame(ScmRepository repository, ScmFileSet fileSet, java.lang.String filename)
Deprecated.use blame withBlameScmRequest
parameterBlameScmResult
ScmProviderStub. blame(BlameScmRequest blameScmRequest)
BlameScmResult
ScmProviderStub. blame(ScmRepository repository, ScmFileSet fileSet, java.lang.String filename)
Returns the blame of specified fileprotected BranchScmResult
AbstractScmProvider. branch(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
BranchScmResult
AbstractScmProvider. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
AbstractScmProvider. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName, java.lang.String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
AbstractScmProvider. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName, ScmBranchParameters scmBranchParameters)
BranchScmResult
ScmProvider. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName)
Deprecated.use#branch(ScmRepository, ScmFileSet, String, String, ScmBranchParameters)
BranchScmResult
ScmProvider. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName, java.lang.String message)
Deprecated.use#branch(ScmRepository, ScmFileSet, String, String, ScmBranchParameters)
BranchScmResult
ScmProvider. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName, ScmBranchParameters scmBranchParameters)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
ScmProviderStub. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
ScmProviderStub. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName, java.lang.String message)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameBranchScmResult
ScmProviderStub. branch(ScmRepository repository, ScmFileSet fileSet, java.lang.String branchName, ScmBranchParameters scmBranchParameters)
Branch (or label in some systems) will create a branch of the source file with a certain branch nameprotected ChangeLogScmResult
AbstractScmProvider. changelog(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
ChangeLogScmResult
AbstractScmProvider. changeLog(ChangeLogScmRequest request)
Returns the changes that have happend in the source control system in a certain period of time.ChangeLogScmResult
AbstractScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.lang.String startTag, java.lang.String endTag)
Deprecated.ChangeLogScmResult
AbstractScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.lang.String startTag, java.lang.String endTag, java.lang.String datePattern)
Deprecated.ChangeLogScmResult
AbstractScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, java.lang.String branch)
Deprecated.ChangeLogScmResult
AbstractScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, java.lang.String branch, java.lang.String datePattern)
Deprecated.ChangeLogScmResult
AbstractScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch)
Returns the changes that have happend in the source control system in a certain period of time.ChangeLogScmResult
AbstractScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch, java.lang.String datePattern)
Returns the changes that have happend in the source control system in a certain period of time.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
AbstractScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
Returns the changes that have happend in the source control system between two tags.ChangeLogScmResult
ScmProvider. changeLog(ChangeLogScmRequest scmRequest)
Returns the changes that have happend in the source control system in a certain period of time.ChangeLogScmResult
ScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.lang.String startTag, java.lang.String endTag)
Deprecated.ChangeLogScmResult
ScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.lang.String startTag, java.lang.String endTag, java.lang.String datePattern)
Deprecated.ChangeLogScmResult
ScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, java.lang.String branch)
ChangeLogScmResult
ScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, java.lang.String branch, java.lang.String datePattern)
Deprecated.ChangeLogScmResult
ScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch)
Deprecated.ChangeLogScmResult
ScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch, java.lang.String datePattern)
Deprecated.ChangeLogScmResult
ScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
Deprecated.ChangeLogScmResult
ScmProvider. changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, java.lang.String datePattern)
Deprecated.ChangeLogScmResult
ScmProviderStub. changeLog(ChangeLogScmRequest scmRequest)
ChangeLogScmResult
ScmProviderStub. changeLog(ScmRepository repository, ScmFileSet fileSet, java.lang.String startTag, java.lang.String endTag)
Returns the changes that have happend in the source control system between two tags.ChangeLogScmResult
ScmProviderStub. changeLog(ScmRepository repository, ScmFileSet fileSet, java.lang.String startTag, java.lang.String endTag, java.lang.String datePattern)
Returns the changes that have happend in the source control system between two tags.ChangeLogScmResult
ScmProviderStub. changeLog(ScmRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, java.lang.String 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, java.util.Date startDate, java.util.Date endDate, int numDays, java.lang.String branch, java.lang.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, java.util.Date startDate, java.util.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, java.util.Date startDate, java.util.Date endDate, int numDays, ScmBranch branch, java.lang.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, 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, java.lang.String datePattern)
Returns the changes that have happend in the source control system between two tags.protected CheckInScmResult
AbstractScmProvider. checkin(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
CheckInScmResult
AbstractScmProvider. checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
AbstractScmProvider. checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
Deprecated.CheckInScmResult
AbstractScmProvider. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
ScmProvider. checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
ScmProvider. checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
CheckInScmResult
ScmProvider. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
ScmProviderStub. checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
ScmProviderStub. checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
Save the changes you have done into the repository.CheckInScmResult
ScmProviderStub. checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, java.lang.String message)
Save the changes you have done into the repository.protected CheckOutScmResult
AbstractScmProvider. checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
CheckOutScmResult
AbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet)
Create a copy of the repository on your local machineCheckOutScmResult
AbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, boolean recursive)
Create a copy of the repository on your local machine.CheckOutScmResult
AbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
Deprecated.CheckOutScmResult
AbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, boolean recursive)
Deprecated.CheckOutScmResult
AbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)
Create a copy of the repository on your local machineCheckOutScmResult
AbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, boolean recursive)
Create a copy of the repository on your local machine.CheckOutScmResult
AbstractScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, CommandParameters commandParameters)
CheckOutScmResult
ScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet)
Create a copy of the repository on your local machineCheckOutScmResult
ScmProvider. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, boolean recursive)
Create a copy of the repository on your local machine.CheckOutScmResult
ScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
CheckOutScmResult
ScmProvider. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, java.lang.String tag, boolean recursive)
CheckOutScmResult
ScmProvider. checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Create a copy of the repository on your local machineCheckOutScmResult
ScmProvider. 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, CommandParameters commandParameters)
Create a copy of the repository on your local machine.CheckOutScmResult
ScmProviderStub. checkOut(ScmRepository repository, ScmFileSet fileSet)
Create a copy of the repository on your local machineCheckOutScmResult
ScmProviderStub. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, boolean recursive)
Create a copy of the repository on your local machine.CheckOutScmResult
ScmProviderStub. checkOut(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
Create a copy of the repository on your local machineCheckOutScmResult
ScmProviderStub. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, java.lang.String tag, 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 machineCheckOutScmResult
ScmProviderStub. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion version, boolean recursive)
Create a copy of the repository on your local machine.CheckOutScmResult
ScmProviderStub. checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion version, CommandParameters commandParameters)
protected DiffScmResult
AbstractScmProvider. diff(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
DiffScmResult
AbstractScmProvider. diff(ScmRepository repository, ScmFileSet fileSet, java.lang.String startRevision, java.lang.String endRevision)
Deprecated.DiffScmResult
AbstractScmProvider. diff(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
Create a diff between two branch/tag/revision.DiffScmResult
ScmProvider. diff(ScmRepository scmRepository, ScmFileSet scmFileSet, java.lang.String startRevision, java.lang.String endRevision)
DiffScmResult
ScmProvider. diff(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion startVersion, ScmVersion endVersion)
Create a diff between two branch/tag/revision.DiffScmResult
ScmProviderStub. diff(ScmRepository repository, ScmFileSet fileSet, java.lang.String startRevision, java.lang.String endRevision)
Create a diff between two branch/tag/revision.DiffScmResult
ScmProviderStub. diff(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion startVersion, ScmVersion endVersion)
Create a diff between two branch/tag/revision.protected EditScmResult
AbstractScmProvider. edit(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
EditScmResult
AbstractScmProvider. edit(ScmRepository repository, ScmFileSet fileSet)
Make a file editable.EditScmResult
ScmProvider. edit(ScmRepository repository, ScmFileSet fileSet)
Make a file editable.EditScmResult
ScmProviderStub. edit(ScmRepository repository, ScmFileSet fileSet)
Make a file editable.protected ExportScmResult
AbstractScmProvider. export(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
ExportScmResult
AbstractScmProvider. export(ScmRepository repository, ScmFileSet fileSet)
Create an exported copy of the repository on your local machineExportScmResult
AbstractScmProvider. export(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
Deprecated.ExportScmResult
AbstractScmProvider. export(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String outputDirectory)
Deprecated.ExportScmResult
AbstractScmProvider. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)
Create an exported copy of the repository on your local machineExportScmResult
AbstractScmProvider. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineExportScmResult
ScmProvider. export(ScmRepository repository, ScmFileSet fileSet)
Create an exported copy of the repository on your local machineExportScmResult
ScmProvider. export(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
ExportScmResult
ScmProvider. export(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String outputDirectory)
ExportScmResult
ScmProvider. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Create an exported copy of the repository on your local machineExportScmResult
ScmProvider. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineExportScmResult
ScmProviderStub. export(ScmRepository repository, ScmFileSet fileSet)
Create an exported copy of the repository on your local machineExportScmResult
ScmProviderStub. export(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
Create an exported copy of the repository on your local machineExportScmResult
ScmProviderStub. export(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineExportScmResult
ScmProviderStub. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Create an exported copy of the repository on your local machineExportScmResult
ScmProviderStub. export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String outputDirectory)
Create an exported copy of the repository on your local machineInfoScmResult
AbstractScmProvider. info(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
InfoScmResult
ScmProvider. info(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
InfoScmResult
ScmProviderStub. 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
AbstractScmProvider. list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, java.lang.String tag)
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
ScmProvider. list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, java.lang.String tag)
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
ScmProviderStub. list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, java.lang.String tag)
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.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
AbstractScmProvider. mkdir(ScmRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
Create directory/directories in the repository.MkdirScmResult
ScmProvider. mkdir(ScmRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
Create directory/directories in the repository.MkdirScmResult
ScmProviderStub. mkdir(ScmRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
Create directory/directories in the repository.RemoteInfoScmResult
AbstractScmProvider. remoteInfo(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
RemoteInfoScmResult
ScmProvider. remoteInfo(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
RemoteInfoScmResult
ScmProviderStub. remoteInfo(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected RemoveScmResult
AbstractScmProvider. remove(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
RemoveScmResult
AbstractScmProvider. remove(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Removes the given files from the source control systemRemoveScmResult
ScmProvider. remove(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Removes the given files from the source control systemRemoveScmResult
ScmProviderStub. remove(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
Removes the given files from the source control systemprotected StatusScmResult
AbstractScmProvider. status(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
StatusScmResult
AbstractScmProvider. 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
ScmProviderStub. 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
AbstractScmProvider. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
AbstractScmProvider. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName, java.lang.String message)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
AbstractScmProvider. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName, ScmTagParameters scmTagParameters)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
ScmProvider. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName)
TagScmResult
ScmProvider. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName, java.lang.String message)
TagScmResult
ScmProvider. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName, ScmTagParameters scmTagParameters)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
ScmProviderStub. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
ScmProviderStub. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
Tag (or label in some systems) will tag the source file with a certain tagTagScmResult
ScmProviderStub. tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tagName, ScmTagParameters scmTagParameters)
protected UnEditScmResult
AbstractScmProvider. unedit(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
UnEditScmResult
AbstractScmProvider. 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
ScmProviderStub. unedit(ScmRepository repository, ScmFileSet fileSet)
Make a file no longer editable.protected UpdateScmResult
AbstractScmProvider. update(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
UpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
Deprecated.UpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, boolean runChangelog)
Deprecated.UpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String datePattern)
Deprecated.UpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.util.Date lastUpdate)
Deprecated.UpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.util.Date lastUpdate, java.lang.String datePattern)
Deprecated.UpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
AbstractScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
UpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, boolean runChangelog)
UpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String datePattern)
UpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.util.Date lastUpdate)
UpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.util.Date lastUpdate, java.lang.String datePattern)
UpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProvider. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.util.Date lastUpdate, java.lang.String datePattern, boolean runChangelog)
UpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate)
Updates the copy on the local machine with the changes in the repositoryUpdateScmResult
ScmProviderStub. update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, java.util.Date lastUpdate, java.lang.String datePattern)
Updates the copy on the local machine with the changes in the repository -
Uses of ScmException in org.apache.maven.scm.provider.accurev
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command
Methods in org.apache.maven.scm.provider.accurev.command that throw ScmException Modifier and Type Method Description protected abstract ScmResult
AbstractAccuRevCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected ScmResult
AbstractAccuRevExtractSourceCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected ScmResult
AbstractAccuRevCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.add
Methods in org.apache.maven.scm.provider.accurev.command.add that throw ScmException Modifier and Type Method Description AddScmResult
AccuRevAddCommand. add(ScmProviderRepository repo, ScmFileSet scmFileSet, CommandParameters commandParameters)
protected ScmResult
AccuRevAddCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
Add. -
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.blame
Methods in org.apache.maven.scm.provider.accurev.command.blame that throw ScmException Modifier and Type Method Description BlameScmResult
AccuRevBlameCommand. blame(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected BlameScmResult
AccuRevBlameCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.changelog
Methods in org.apache.maven.scm.provider.accurev.command.changelog that throw ScmException Modifier and Type Method Description ChangeLogScmResult
AccuRevChangeLogCommand. changelog(ScmProviderRepository repo, ScmFileSet testFileSet, CommandParameters params)
protected ScmResult
AccuRevChangeLogCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.checkin
Methods in org.apache.maven.scm.provider.accurev.command.checkin that throw ScmException Modifier and Type Method Description CheckInScmResult
AccuRevCheckInCommand. checkIn(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected ScmResult
AccuRevCheckInCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.checkout
Methods in org.apache.maven.scm.provider.accurev.command.checkout that throw ScmException Modifier and Type Method Description CheckOutScmResult
AccuRevCheckOutCommand. checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.export
Methods in org.apache.maven.scm.provider.accurev.command.export that throw ScmException Modifier and Type Method Description ExportScmResult
AccuRevExportCommand. export(ScmProviderRepository repository, ScmFileSet scmFileSet, CommandParameters params)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.login
Methods in org.apache.maven.scm.provider.accurev.command.login that throw ScmException Modifier and Type Method Description protected ScmResult
AccuRevLoginCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
LoginScmResult
AccuRevLoginCommand. login(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.remove
Methods in org.apache.maven.scm.provider.accurev.command.remove that throw ScmException Modifier and Type Method Description protected ScmResult
AccuRevRemoveCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
RemoveScmResult
AccuRevRemoveCommand. remove(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.status
Methods in org.apache.maven.scm.provider.accurev.command.status that throw ScmException Modifier and Type Method Description protected ScmResult
AccuRevStatusCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
StatusScmResult
AccuRevStatusCommand. status(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.tag
Methods in org.apache.maven.scm.provider.accurev.command.tag that throw ScmException Modifier and Type Method Description protected ScmResult
AccuRevTagCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
TagScmResult
AccuRevTagCommand. tag(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.accurev.command.update
Methods in org.apache.maven.scm.provider.accurev.command.update that throw ScmException Modifier and Type Method Description protected ScmResult
AccuRevUpdateCommand. executeAccurevCommand(AccuRevScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
UpdateScmResult
AccuRevUpdateCommand. update(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar
Methods in org.apache.maven.scm.provider.bazaar that throw ScmException Modifier and Type Method 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(java.io.File workingDir, java.lang.String[] cmdAndArgs)
static ScmResult
BazaarUtils. execute(BazaarConsumer consumer, ScmLogger logger, java.io.File workingDir, java.lang.String[] cmdAndArgs)
static org.apache.maven.scm.provider.bazaar.BazaarConfig.VersionConsumer
BazaarConfig. getBazaarVersion(java.io.File workingDir)
static int
BazaarUtils. getCurrentRevisionNumber(ScmLogger logger, java.io.File workingDir)
static org.apache.maven.scm.provider.bazaar.BazaarConfig.VersionConsumer
BazaarConfig. getPythonVersion(java.io.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)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.add
Methods in org.apache.maven.scm.provider.bazaar.command.add that throw ScmException Modifier and Type Method Description protected ScmResult
BazaarAddCommand. executeAddCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, boolean binary)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.blame
Methods in org.apache.maven.scm.provider.bazaar.command.blame that throw ScmException Modifier and Type Method Description BlameScmResult
BazaarBlameCommand. executeBlameCommand(ScmProviderRepository repo, ScmFileSet workingDirectory, java.lang.String filename)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.changelog
Methods in org.apache.maven.scm.provider.bazaar.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
BazaarChangeLogCommand. executeChangeLogCommand(ChangeLogScmRequest request)
protected ChangeLogScmResult
BazaarChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.checkin
Methods in org.apache.maven.scm.provider.bazaar.command.checkin that throw ScmException Modifier and Type Method Description protected CheckInScmResult
BazaarCheckInCommand. executeCheckInCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.checkout
Methods in org.apache.maven.scm.provider.bazaar.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
BazaarCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version, boolean recursive, boolean shallow)
Execute Check out command line. -
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.diff
Methods in org.apache.maven.scm.provider.bazaar.command.diff that throw ScmException Modifier and Type Method Description protected DiffScmResult
BazaarDiffCommand. executeDiffCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.remove
Methods in org.apache.maven.scm.provider.bazaar.command.remove that throw ScmException Modifier and Type Method Description protected ScmResult
BazaarRemoveCommand. executeRemoveCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.status
Methods in org.apache.maven.scm.provider.bazaar.command.status that throw ScmException Modifier and Type Method Description StatusScmResult
BazaarStatusCommand. executeStatusCommand(ScmProviderRepository repo, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.tag
Methods in org.apache.maven.scm.provider.bazaar.command.tag that throw ScmException Modifier and Type Method Description protected ScmResult
BazaarTagCommand. executeTagCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tagName, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.bazaar.command.update
Methods in org.apache.maven.scm.provider.bazaar.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
BazaarUpdateCommand. executeUpdateCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.add
Methods in org.apache.maven.scm.provider.clearcase.command.add that throw ScmException Modifier and Type Method Description protected ScmResult
ClearCaseAddCommand. executeAddCommand(ScmProviderRepository scmProviderRepository, ScmFileSet scmFileSet, java.lang.String string, boolean b)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.blame
Methods in org.apache.maven.scm.provider.clearcase.command.blame that throw ScmException Modifier and Type Method Description BlameScmResult
ClearCaseBlameCommand. executeBlameCommand(ScmProviderRepository repo, ScmFileSet workingDirectory, java.lang.String filename)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.changelog
Methods in org.apache.maven.scm.provider.clearcase.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
ClearCaseChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.checkin
Methods in org.apache.maven.scm.provider.clearcase.command.checkin that throw ScmException Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
ClearCaseCheckInCommand. createCommandLine(ScmFileSet scmFileSet, java.lang.String message)
protected CheckInScmResult
ClearCaseCheckInCommand. executeCheckInCommand(ScmProviderRepository scmProviderRepository, ScmFileSet fileSet, java.lang.String message, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.checkout
Methods in org.apache.maven.scm.provider.clearcase.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
ClearCaseCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion version, boolean recursive, boolean shallow)
Execute Check out command line. -
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.edit
Methods in org.apache.maven.scm.provider.clearcase.command.edit that throw ScmException Modifier and Type Method Description protected ScmResult
ClearCaseEditCommand. executeEditCommand(ScmProviderRepository repository, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.remove
Methods in org.apache.maven.scm.provider.clearcase.command.remove that throw ScmException Modifier and Type Method Description protected ScmResult
ClearCaseRemoveCommand. executeRemoveCommand(ScmProviderRepository scmProviderRepository, ScmFileSet scmFileSet, java.lang.String string)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.status
Methods in org.apache.maven.scm.provider.clearcase.command.status that throw ScmException Modifier and Type Method Description protected StatusScmResult
ClearCaseStatusCommand. executeStatusCommand(ScmProviderRepository scmProviderRepository, ScmFileSet scmFileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.tag
Methods in org.apache.maven.scm.provider.clearcase.command.tag that throw ScmException Modifier and Type Method Description protected ScmResult
ClearCaseTagCommand. executeTagCommand(ScmProviderRepository scmProviderRepository, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
protected ScmResult
ClearCaseTagCommand. executeTagCommand(ScmProviderRepository scmProviderRepository, ScmFileSet fileSet, java.lang.String tag, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.unedit
Methods in org.apache.maven.scm.provider.clearcase.command.unedit that throw ScmException Modifier and Type Method Description protected ScmResult
ClearCaseUnEditCommand. executeUnEditCommand(ScmProviderRepository repository, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.clearcase.command.update
Methods in org.apache.maven.scm.provider.clearcase.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
ClearCaseUpdateCommand. executeUpdateCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib
Methods in org.apache.maven.scm.provider.cvslib that throw ScmException Modifier and Type Method 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 java.lang.String
AbstractCvsScmProvider. getRelativePath(java.io.File basedir, java.io.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)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command
Methods in org.apache.maven.scm.provider.cvslib.command that throw ScmException Modifier and Type Method Description static boolean
CvsCommandUtils. isCvsNT()
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.add
Methods in org.apache.maven.scm.provider.cvslib.command.add that throw ScmException Modifier and Type Method Description protected ScmResult
AbstractCvsAddCommand. executeAddCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, boolean binary)
protected abstract AddScmResult
AbstractCvsAddCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, java.util.List<ScmFile> addedFiles)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.blame
Methods in org.apache.maven.scm.provider.cvslib.command.blame that throw ScmException Modifier and Type Method Description BlameScmResult
AbstractCvsBlameCommand. executeBlameCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String filename)
protected abstract BlameScmResult
AbstractCvsBlameCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, CvsScmProviderRepository repository)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.branch
Methods in org.apache.maven.scm.provider.cvslib.command.branch that throw ScmException Modifier and Type Method Description protected ScmResult
AbstractCvsBranchCommand. executeBranchCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String branchName, java.lang.String message)
protected abstract BranchScmResult
AbstractCvsBranchCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.changelog
Methods in org.apache.maven.scm.provider.cvslib.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
AbstractCvsChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
protected ChangeLogScmResult
AbstractCvsChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
protected abstract ChangeLogScmResult
AbstractCvsChangeLogCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, java.util.Date startDate, java.util.Date endDate, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.checkin
Methods in org.apache.maven.scm.provider.cvslib.command.checkin that throw ScmException Modifier and Type Method Description protected CheckInScmResult
AbstractCvsCheckInCommand. executeCheckInCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, ScmVersion version)
protected abstract CheckInScmResult
AbstractCvsCheckInCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, CvsScmProviderRepository repository, java.io.File messageFile)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.checkout
Methods in org.apache.maven.scm.provider.cvslib.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
AbstractCvsCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version, boolean recursive, boolean shallow)
The overridenAbstractCvsCheckOutCommand.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)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.diff
Methods in org.apache.maven.scm.provider.cvslib.command.diff that throw ScmException Modifier and Type Method 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)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.export
Methods in org.apache.maven.scm.provider.cvslib.command.export that throw ScmException Modifier and Type Method Description protected abstract ExportScmResult
AbstractCvsExportCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
protected ExportScmResult
AbstractCvsExportCommand. executeExportCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version, java.lang.String outputDirectory)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.list
Methods in org.apache.maven.scm.provider.cvslib.command.list that throw ScmException Modifier and Type Method 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 -
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.login
Methods in org.apache.maven.scm.provider.cvslib.command.login that throw ScmException Modifier and Type Method Description void
CvsPass. execute()
Does the work.LoginScmResult
CvsLoginCommand. executeLoginCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
boolean
CvsLoginCommand. isCvsNT()
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.mkdir
Methods in org.apache.maven.scm.provider.cvslib.command.mkdir that throw ScmException Modifier and Type Method Description protected MkdirScmResult
AbstractCvsMkdirCommand. executeMkdirCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
Creates directories in the remote repository. -
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.remove
Methods in org.apache.maven.scm.provider.cvslib.command.remove that throw ScmException Modifier and Type Method Description protected abstract RemoveScmResult
AbstractCvsRemoveCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, java.util.List<ScmFile> removedFiles)
protected ScmResult
AbstractCvsRemoveCommand. executeRemoveCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.status
Methods in org.apache.maven.scm.provider.cvslib.command.status that throw ScmException Modifier and Type Method Description protected abstract StatusScmResult
AbstractCvsStatusCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
protected StatusScmResult
AbstractCvsStatusCommand. executeStatusCommand(ScmProviderRepository repo, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.tag
Methods in org.apache.maven.scm.provider.cvslib.command.tag that throw ScmException Modifier and Type Method Description protected abstract TagScmResult
AbstractCvsTagCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
ScmResult
AbstractCvsTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
ScmResult
AbstractCvsTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String tag, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.command.update
Methods in org.apache.maven.scm.provider.cvslib.command.update that throw ScmException Modifier and Type Method Description protected abstract UpdateScmResult
AbstractCvsUpdateCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
UpdateScmResult
AbstractCvsUpdateCommand. executeUpdateCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.add
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.add that throw ScmException Modifier and Type Method Description protected AddScmResult
CvsExeAddCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, java.util.List<ScmFile> addedFiles)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.blame
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.blame that throw ScmException Modifier and Type Method Description protected BlameScmResult
CvsExeBlameCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, CvsScmProviderRepository repository)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.branch
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.branch that throw ScmException Modifier and Type Method Description protected BranchScmResult
CvsExeBranchCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.changelog
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
CvsExeChangeLogCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, java.util.Date startDate, java.util.Date endDate, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.checkin
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.checkin that throw ScmException Modifier and Type Method Description protected CheckInScmResult
CvsExeCheckInCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, CvsScmProviderRepository repository, java.io.File messageFile)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.checkout
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
CvsExeCheckOutCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.diff
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.diff that throw ScmException Modifier and Type Method Description protected DiffScmResult
CvsExeDiffCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.export
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.export that throw ScmException Modifier and Type Method Description protected ExportScmResult
CvsExeExportCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.list
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.list that throw ScmException Modifier and Type Method Description protected ListScmResult
CvsExeListCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.remove
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.remove that throw ScmException Modifier and Type Method Description protected RemoveScmResult
CvsExeRemoveCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, java.util.List<ScmFile> removedFiles)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.status
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.status that throw ScmException Modifier and Type Method Description protected StatusScmResult
CvsExeStatusCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.tag
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.tag that throw ScmException Modifier and Type Method Description protected TagScmResult
CvsExeTagCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsexe.command.update
Methods in org.apache.maven.scm.provider.cvslib.cvsexe.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
CvsExeUpdateCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.add
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.add that throw ScmException Modifier and Type Method Description protected AddScmResult
CvsJavaAddCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, java.util.List<ScmFile> addedFiles)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.branch
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.branch that throw ScmException Modifier and Type Method Description protected BranchScmResult
CvsJavaBranchCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.changelog
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
CvsJavaChangeLogCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, java.util.Date startDate, java.util.Date endDate, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.checkin
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.checkin that throw ScmException Modifier and Type Method Description protected CheckInScmResult
CvsJavaCheckInCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, CvsScmProviderRepository repository, java.io.File messageFile)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.checkout
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
CvsJavaCheckOutCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.diff
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.diff that throw ScmException Modifier and Type Method Description protected DiffScmResult
CvsJavaDiffCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.export
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.export that throw ScmException Modifier and Type Method Description protected ExportScmResult
CvsJavaExportCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.list
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.list that throw ScmException Modifier and Type Method Description protected ListScmResult
CvsJavaListCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.login
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.login that throw ScmException Modifier and Type Method Description boolean
CvsJavaLoginCommand. isCvsNT()
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.remove
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.remove that throw ScmException Modifier and Type Method Description protected RemoveScmResult
CvsJavaRemoveCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl, java.util.List<ScmFile> removedFiles)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.status
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.status that throw ScmException Modifier and Type Method Description protected StatusScmResult
CvsJavaStatusCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.tag
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.tag that throw ScmException Modifier and Type Method Description protected TagScmResult
CvsJavaTagCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.cvslib.cvsjava.command.update
Methods in org.apache.maven.scm.provider.cvslib.cvsjava.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
CvsJavaUpdateCommand. executeCvsCommand(org.codehaus.plexus.util.cli.Commandline cl)
-
Uses of ScmException in org.apache.maven.scm.provider.git
Methods in org.apache.maven.scm.provider.git that throw ScmException Modifier and Type Method Description AddScmResult
AbstractGitScmProvider. add(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected BlameScmResult
AbstractGitScmProvider. blame(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected BranchScmResult
AbstractGitScmProvider. branch(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
ChangeLogScmResult
AbstractGitScmProvider. changelog(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
CheckInScmResult
AbstractGitScmProvider. checkin(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
CheckOutScmResult
AbstractGitScmProvider. checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
DiffScmResult
AbstractGitScmProvider. diff(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected ScmResult
AbstractGitScmProvider. executeCommand(GitCommand command, ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected ExportScmResult
AbstractGitScmProvider. export(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
protected abstract java.lang.String
AbstractGitScmProvider. getRepositoryURL(java.io.File path)
InfoScmResult
AbstractGitScmProvider. info(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
RemoteInfoScmResult
AbstractGitScmProvider. remoteInfo(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
RemoveScmResult
AbstractGitScmProvider. remove(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
StatusScmResult
AbstractGitScmProvider. status(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
TagScmResult
AbstractGitScmProvider. tag(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
UpdateScmResult
AbstractGitScmProvider. update(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe
Methods in org.apache.maven.scm.provider.git.gitexe that throw ScmException Modifier and Type Method Description protected java.lang.String
GitExeScmProvider. getRepositoryURL(java.io.File path)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command
Methods in org.apache.maven.scm.provider.git.gitexe.command that throw ScmException Modifier and Type Method 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)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.add
Methods in org.apache.maven.scm.provider.git.gitexe.command.add that throw ScmException Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
GitAddCommand. createCommandLine(java.io.File workingDirectory, java.util.List<java.io.File> files)
protected ScmResult
GitAddCommand. executeAddCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, boolean binary)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.blame
Methods in org.apache.maven.scm.provider.git.gitexe.command.blame that throw ScmException Modifier and Type Method Description BlameScmResult
GitBlameCommand. executeBlameCommand(ScmProviderRepository repo, ScmFileSet workingDirectory, java.lang.String filename)
protected ScmResult
GitBlameCommand. executeCommand(ScmProviderRepository repository, ScmFileSet workingDirectory, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.branch
Methods in org.apache.maven.scm.provider.git.gitexe.command.branch that throw ScmException Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
GitBranchCommand. createPushCommandLine(GitScmProviderRepository repository, ScmFileSet fileSet, java.lang.String branch)
ScmResult
GitBranchCommand. executeBranchCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String branch, java.lang.String message)
static java.lang.String
GitBranchCommand. getCurrentBranch(ScmLogger logger, GitScmProviderRepository repository, ScmFileSet fileSet)
Helper function to detect the current branch -
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.changelog
Methods in org.apache.maven.scm.provider.git.gitexe.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
GitChangeLogCommand. executeChangeLogCommand(ChangeLogScmRequest request)
protected ChangeLogScmResult
GitChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
protected ChangeLogScmResult
GitChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern, ScmVersion startVersion, ScmVersion endVersion)
protected ChangeLogScmResult
GitChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern, ScmVersion startVersion, ScmVersion endVersion, java.lang.Integer limit)
protected ChangeLogScmResult
GitChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern, ScmVersion startVersion, ScmVersion endVersion, java.lang.Integer limit, ScmVersion version)
protected ChangeLogScmResult
GitChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion version, java.lang.String datePattern)
protected ChangeLogScmResult
GitChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.checkin
Methods in org.apache.maven.scm.provider.git.gitexe.command.checkin that throw ScmException Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
GitCheckInCommand. createCommitCommandLine(GitScmProviderRepository repository, ScmFileSet fileSet, java.io.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, java.lang.String message, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.checkout
Methods in org.apache.maven.scm.provider.git.gitexe.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
GitCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version, boolean recursive, boolean shallow)
The overridenGitCheckOutCommand.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. -
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.diff
Methods in org.apache.maven.scm.provider.git.gitexe.command.diff that throw ScmException Modifier and Type Method Description protected DiffScmResult
GitDiffCommand. executeDiffCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.info
Methods in org.apache.maven.scm.provider.git.gitexe.command.info that throw ScmException Modifier and Type Method 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)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.remoteinfo
Methods in org.apache.maven.scm.provider.git.gitexe.command.remoteinfo that throw ScmException Modifier and Type Method Description RemoteInfoScmResult
GitRemoteInfoCommand. executeRemoteInfoCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.remove
Methods in org.apache.maven.scm.provider.git.gitexe.command.remove that throw ScmException Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
GitRemoveCommand. createCommandLine(java.io.File workingDirectory, java.util.List<java.io.File> files)
protected ScmResult
GitRemoveCommand. executeRemoveCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.status
Methods in org.apache.maven.scm.provider.git.gitexe.command.status that throw ScmException Modifier and Type Method Description protected StatusScmResult
GitStatusCommand. executeStatusCommand(ScmProviderRepository repo, ScmFileSet fileSet)
static java.net.URI
GitStatusCommand. getRelativeCWD(AbstractCommand caller, ScmFileSet fileSet)
Get the dir relative to the repository root. -
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.tag
Methods in org.apache.maven.scm.provider.git.gitexe.command.tag that throw ScmException Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
GitTagCommand. createPushCommandLine(GitScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tag)
ScmResult
GitTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
ScmResult
GitTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String tag, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.git.gitexe.command.update
Methods in org.apache.maven.scm.provider.git.gitexe.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
GitUpdateCommand. executeUpdateCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion scmVersion)
-
Uses of ScmException in org.apache.maven.scm.provider.git.repository
Constructors in org.apache.maven.scm.provider.git.repository that throw ScmException Constructor Description GitScmProviderRepository(java.lang.String url)
GitScmProviderRepository(java.lang.String url, java.lang.String user, java.lang.String password)
-
Uses of ScmException in org.apache.maven.scm.provider.hg
Methods in org.apache.maven.scm.provider.hg that throw ScmException Modifier and Type Method 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, java.io.File workingDir, java.lang.String workingbranchName)
Check if there are outgoing changes on a different branch.static ScmResult
HgUtils. execute(java.io.File workingDir, java.lang.String[] cmdAndArgs)
static ScmResult
HgUtils. execute(HgConsumer consumer, ScmLogger logger, java.io.File workingDir, java.lang.String[] cmdAndArgs)
static java.lang.String
HgUtils. getCurrentBranchName(ScmLogger logger, java.io.File workingDir)
static int
HgUtils. getCurrentRevisionNumber(ScmLogger logger, java.io.File workingDir)
static org.apache.maven.scm.provider.hg.HgConfig.HgVersionConsumer
HgConfig. getHgVersion(java.io.File workingDir)
InfoScmResult
HgScmProvider. info(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
returns result of hg id -iprotected 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)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.add
Methods in org.apache.maven.scm.provider.hg.command.add that throw ScmException Modifier and Type Method Description protected ScmResult
HgAddCommand. executeAddCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, boolean binary)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.blame
Methods in org.apache.maven.scm.provider.hg.command.blame that throw ScmException Modifier and Type Method Description BlameScmResult
HgBlameCommand. executeBlameCommand(ScmProviderRepository repo, ScmFileSet workingDirectory, java.lang.String filename)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.branch
Methods in org.apache.maven.scm.provider.hg.command.branch that throw ScmException Modifier and Type Method Description protected ScmResult
HgBranchCommand. executeBranchCommand(ScmProviderRepository scmProviderRepository, ScmFileSet fileSet, java.lang.String branch, java.lang.String message)
protected ScmResult
HgBranchCommand. executeBranchCommand(ScmProviderRepository scmProviderRepository, ScmFileSet fileSet, java.lang.String branch, ScmBranchParameters scmBranchParameters)
default impl to provide backward comp -
Uses of ScmException in org.apache.maven.scm.provider.hg.command.changelog
Methods in org.apache.maven.scm.provider.hg.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
HgChangeLogCommand. executeChangeLogCommand(ChangeLogScmRequest request)
protected ChangeLogScmResult
HgChangeLogCommand. executeChangeLogCommand(ScmProviderRepository scmProviderRepository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
protected ChangeLogScmResult
HgChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.checkin
Methods in org.apache.maven.scm.provider.hg.command.checkin that throw ScmException Modifier and Type Method Description protected CheckInScmResult
HgCheckInCommand. executeCheckInCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, ScmVersion tag)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.checkout
Methods in org.apache.maven.scm.provider.hg.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
HgCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion scmVersion, boolean recursive, boolean shallow)
Execute Check out command line. -
Uses of ScmException in org.apache.maven.scm.provider.hg.command.diff
Methods in org.apache.maven.scm.provider.hg.command.diff that throw ScmException Modifier and Type Method Description protected DiffScmResult
HgDiffCommand. executeDiffCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.info
Methods in org.apache.maven.scm.provider.hg.command.info that throw ScmException Modifier and Type Method Description protected ScmResult
HgInfoCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.inventory
Methods in org.apache.maven.scm.provider.hg.command.inventory that throw ScmException Modifier and Type Method Description protected ListScmResult
HgListCommand. executeListCommand(ScmProviderRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion scmVersion)
List contents of the remote repository -
Uses of ScmException in org.apache.maven.scm.provider.hg.command.remove
Methods in org.apache.maven.scm.provider.hg.command.remove that throw ScmException Modifier and Type Method Description protected ScmResult
HgRemoveCommand. executeRemoveCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.status
Methods in org.apache.maven.scm.provider.hg.command.status that throw ScmException Modifier and Type Method Description StatusScmResult
HgStatusCommand. executeStatusCommand(ScmProviderRepository repo, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.tag
Methods in org.apache.maven.scm.provider.hg.command.tag that throw ScmException Modifier and Type Method Description protected ScmResult
HgTagCommand. executeTagCommand(ScmProviderRepository scmProviderRepository, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
protected ScmResult
HgTagCommand. executeTagCommand(ScmProviderRepository scmProviderRepository, ScmFileSet fileSet, java.lang.String tag, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.hg.command.update
Methods in org.apache.maven.scm.provider.hg.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
HgUpdateCommand. executeUpdateCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion tag)
-
Uses of ScmException in org.apache.maven.scm.provider.local
Methods in org.apache.maven.scm.provider.local that throw ScmException Modifier and Type Method 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)
-
Uses of ScmException in org.apache.maven.scm.provider.local.command.add
Methods in org.apache.maven.scm.provider.local.command.add that throw ScmException Modifier and Type Method Description protected ScmResult
LocalAddCommand. executeAddCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, boolean binary)
-
Uses of ScmException in org.apache.maven.scm.provider.local.command.changelog
Methods in org.apache.maven.scm.provider.local.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
LocalChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.local.command.checkin
Methods in org.apache.maven.scm.provider.local.command.checkin that throw ScmException Modifier and Type Method Description protected CheckInScmResult
LocalCheckInCommand. executeCheckInCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.local.command.checkout
Methods in org.apache.maven.scm.provider.local.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
LocalCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version, boolean recursive, boolean shallow)
Execute Check out command line. -
Uses of ScmException in org.apache.maven.scm.provider.local.command.list
Methods in org.apache.maven.scm.provider.local.command.list that throw ScmException Modifier and Type Method Description protected ListScmResult
LocalListCommand. executeListCommand(ScmProviderRepository repo, ScmFileSet fileSet, boolean recursive, ScmVersion version)
List contents of the remote repository -
Uses of ScmException in org.apache.maven.scm.provider.local.command.mkdir
Methods in org.apache.maven.scm.provider.local.command.mkdir that throw ScmException Modifier and Type Method Description protected MkdirScmResult
LocalMkdirCommand. executeMkdirCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
-
Uses of ScmException in org.apache.maven.scm.provider.local.command.status
Methods in org.apache.maven.scm.provider.local.command.status that throw ScmException Modifier and Type Method Description protected StatusScmResult
LocalStatusCommand. executeStatusCommand(ScmProviderRepository repository, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.local.command.tag
Methods in org.apache.maven.scm.provider.local.command.tag that throw ScmException Modifier and Type Method Description protected ScmResult
LocalTagCommand. executeTagCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tagName, java.lang.String message)
protected ScmResult
LocalTagCommand. executeTagCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.local.command.update
Methods in org.apache.maven.scm.provider.local.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
LocalUpdateCommand. executeUpdateCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command
Methods in org.apache.maven.scm.provider.perforce.command that throw ScmException Modifier and Type Method Description protected ScmResult
PerforceInfoCommand. executeCommand(ScmProviderRepository repo, ScmFileSet scmFileSet, CommandParameters commandParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.add
Methods in org.apache.maven.scm.provider.perforce.command.add that throw ScmException Modifier and Type Method Description protected ScmResult
PerforceAddCommand. executeAddCommand(ScmProviderRepository repo, ScmFileSet files, java.lang.String message, boolean binary)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.blame
Methods in org.apache.maven.scm.provider.perforce.command.blame that throw ScmException Modifier and Type Method Description BlameScmResult
PerforceBlameCommand. executeBlameCommand(ScmProviderRepository repo, ScmFileSet workingDirectory, java.lang.String filename)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.changelog
Methods in org.apache.maven.scm.provider.perforce.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
PerforceChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
protected ChangeLogScmResult
PerforceChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern, ScmVersion startVersion, ScmVersion endVersion)
protected ChangeLogScmResult
PerforceChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
java.util.List<java.lang.String>
PerforceChangesConsumer. getChanges()
java.util.List<ChangeSet>
PerforceChangeLogConsumer. getModifications()
java.util.List<ChangeSet>
PerforceDescribeConsumer. getModifications()
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.checkin
Methods in org.apache.maven.scm.provider.perforce.command.checkin that throw ScmException Modifier and Type Method Description protected CheckInScmResult
PerforceCheckInCommand. executeCheckInCommand(ScmProviderRepository repo, ScmFileSet files, java.lang.String message, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.checkout
Methods in org.apache.maven.scm.provider.perforce.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
PerforceCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repo, ScmFileSet files, ScmVersion version, boolean recursive, boolean shallow)
Check out the depot code atrepo.getPath()
into the target directory atfiles.getBasedir
. -
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.diff
Methods in org.apache.maven.scm.provider.perforce.command.diff that throw ScmException Modifier and Type Method Description protected DiffScmResult
PerforceDiffCommand. executeDiffCommand(ScmProviderRepository repo, ScmFileSet files, ScmVersion startRev, ScmVersion endRev)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.edit
Methods in org.apache.maven.scm.provider.perforce.command.edit that throw ScmException Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
PerforceEditCommand. createCommandLine(PerforceScmProviderRepository repo, java.io.File workingDirectory, ScmFileSet files)
protected ScmResult
PerforceEditCommand. executeEditCommand(ScmProviderRepository repo, ScmFileSet files)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.login
Methods in org.apache.maven.scm.provider.perforce.command.login that throw ScmException Modifier and Type Method Description LoginScmResult
PerforceLoginCommand. executeLoginCommand(ScmProviderRepository repo, ScmFileSet files, CommandParameters params)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.remove
Methods in org.apache.maven.scm.provider.perforce.command.remove that throw ScmException Modifier and Type Method Description protected ScmResult
PerforceRemoveCommand. executeRemoveCommand(ScmProviderRepository repo, ScmFileSet files, java.lang.String message)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.status
Methods in org.apache.maven.scm.provider.perforce.command.status that throw ScmException Modifier and Type Method Description protected StatusScmResult
PerforceStatusCommand. executeStatusCommand(ScmProviderRepository repo, ScmFileSet files)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.tag
Methods in org.apache.maven.scm.provider.perforce.command.tag that throw ScmException Modifier and Type Method Description protected ScmResult
PerforceTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet files, java.lang.String tag, java.lang.String message)
protected ScmResult
PerforceTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet files, java.lang.String tag, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.unedit
Methods in org.apache.maven.scm.provider.perforce.command.unedit that throw ScmException Modifier and Type Method Description protected ScmResult
PerforceUnEditCommand. executeUnEditCommand(ScmProviderRepository repo, ScmFileSet files)
-
Uses of ScmException in org.apache.maven.scm.provider.perforce.command.update
Methods in org.apache.maven.scm.provider.perforce.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
PerforceUpdateCommand. executeUpdateCommand(ScmProviderRepository repo, ScmFileSet files, ScmVersion scmVersion)
java.lang.String
PerforceHaveConsumer. getHave()
-
Uses of ScmException in org.apache.maven.scm.provider.starteam
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command
Methods in org.apache.maven.scm.provider.starteam.command that throw ScmException Modifier and Type Method Description static java.lang.String
StarteamCommandLineUtils. displayCommandlineWithoutPassword(org.codehaus.plexus.util.cli.Commandline cl)
Hellper method to display command line without passwordstatic 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)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.add
Methods in org.apache.maven.scm.provider.starteam.command.add that throw ScmException Modifier and Type Method Description protected ScmResult
StarteamAddCommand. executeAddCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, boolean binary)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.changelog
Methods in org.apache.maven.scm.provider.starteam.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
StarteamChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.checkin
Methods in org.apache.maven.scm.provider.starteam.command.checkin that throw ScmException Modifier and Type Method Description protected CheckInScmResult
StarteamCheckInCommand. executeCheckInCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.checkout
Methods in org.apache.maven.scm.provider.starteam.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
StarteamCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version, boolean recursive, boolean shallow)
Execute Check out command line. -
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.diff
Methods in org.apache.maven.scm.provider.starteam.command.diff that throw ScmException Modifier and Type Method 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)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.edit
Methods in org.apache.maven.scm.provider.starteam.command.edit that throw ScmException Modifier and Type Method Description protected ScmResult
StarteamEditCommand. executeEditCommand(ScmProviderRepository repo, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.remove
Methods in org.apache.maven.scm.provider.starteam.command.remove that throw ScmException Modifier and Type Method Description protected ScmResult
StarteamRemoveCommand. executeRemoveCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.status
Methods in org.apache.maven.scm.provider.starteam.command.status that throw ScmException Modifier and Type Method Description protected StatusScmResult
StarteamStatusCommand. executeStatusCommand(ScmProviderRepository repo, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.tag
Methods in org.apache.maven.scm.provider.starteam.command.tag that throw ScmException Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
StarteamTagCommand. createCommandLine(StarteamScmProviderRepository repo, java.io.File workingDirectory, java.lang.String tag)
protected ScmResult
StarteamTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
protected ScmResult
StarteamTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String tag, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.unedit
Methods in org.apache.maven.scm.provider.starteam.command.unedit that throw ScmException Modifier and Type Method Description protected ScmResult
StarteamUnEditCommand. executeUnEditCommand(ScmProviderRepository repo, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.starteam.command.update
Methods in org.apache.maven.scm.provider.starteam.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
StarteamUpdateCommand. executeUpdateCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.svn
Methods in org.apache.maven.scm.provider.svn that throw ScmException Modifier and Type Method 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 java.lang.String
AbstractSvnScmProvider. getRepositoryURL(java.io.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)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe
Methods in org.apache.maven.scm.provider.svn.svnexe that throw ScmException Modifier and Type Method Description protected java.lang.String
SvnExeScmProvider. getRepositoryURL(java.io.File path)
RemoteInfoScmResult
SvnExeScmProvider. remoteInfo(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
boolean
SvnExeScmProvider. remoteUrlExist(ScmProviderRepository repository, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.add
Methods in org.apache.maven.scm.provider.svn.svnexe.command.add that throw ScmException Modifier and Type Method Description protected ScmResult
SvnAddCommand. executeAddCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, boolean binary)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.blame
Methods in org.apache.maven.scm.provider.svn.svnexe.command.blame that throw ScmException Modifier and Type Method Description BlameScmResult
SvnBlameCommand. executeBlameCommand(ScmProviderRepository repo, ScmFileSet workingDirectory, java.lang.String filename)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.branch
Methods in org.apache.maven.scm.provider.svn.svnexe.command.branch that throw ScmException Modifier and Type Method Description ScmResult
SvnBranchCommand. executeBranchCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String branch, java.lang.String message)
ScmResult
SvnBranchCommand. executeBranchCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String branch, ScmBranchParameters scmBranchParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.changelog
Methods in org.apache.maven.scm.provider.svn.svnexe.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
SvnChangeLogCommand. executeChangeLogCommand(ChangeLogScmRequest request)
protected ChangeLogScmResult
SvnChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
Deprecated.protected ChangeLogScmResult
SvnChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, java.lang.String datePattern)
Deprecated. -
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.checkin
Methods in org.apache.maven.scm.provider.svn.svnexe.command.checkin that throw ScmException Modifier and Type Method Description static org.codehaus.plexus.util.cli.Commandline
SvnCheckInCommand. createCommandLine(SvnScmProviderRepository repository, ScmFileSet fileSet, java.io.File messageFile)
protected CheckInScmResult
SvnCheckInCommand. executeCheckInCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String message, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.checkout
Methods in org.apache.maven.scm.provider.svn.svnexe.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
SvnCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version, boolean recursive, boolean shallow)
Execute Check out command line. -
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.diff
Methods in org.apache.maven.scm.provider.svn.svnexe.command.diff that throw ScmException Modifier and Type Method Description protected DiffScmResult
SvnDiffCommand. executeDiffCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.export
Methods in org.apache.maven.scm.provider.svn.svnexe.command.export that throw ScmException Modifier and Type Method Description protected ExportScmResult
SvnExeExportCommand. executeExportCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version, java.lang.String outputDirectory)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.info
Methods in org.apache.maven.scm.provider.svn.svnexe.command.info that throw ScmException Modifier and Type Method Description protected ScmResult
SvnInfoCommand. executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
InfoScmResult
SvnInfoCommand. executeInfoCommand(SvnScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters, boolean recursive, java.lang.String revision)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.list
Methods in org.apache.maven.scm.provider.svn.svnexe.command.list that throw ScmException Modifier and Type Method Description protected ListScmResult
SvnListCommand. executeListCommand(ScmProviderRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion version)
List contents of the remote repository -
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.mkdir
Methods in org.apache.maven.scm.provider.svn.svnexe.command.mkdir that throw ScmException Modifier and Type Method Description protected MkdirScmResult
SvnMkdirCommand. executeMkdirCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, boolean createInLocal)
Creates directories in the remote repository. -
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.remoteinfo
Methods in org.apache.maven.scm.provider.svn.svnexe.command.remoteinfo that throw ScmException Modifier and Type Method Description RemoteInfoScmResult
SvnRemoteInfoCommand. executeRemoteInfoCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
boolean
SvnRemoteInfoCommand. remoteUrlExist(ScmProviderRepository repository, CommandParameters parameters)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.remove
Methods in org.apache.maven.scm.provider.svn.svnexe.command.remove that throw ScmException Modifier and Type Method Description protected ScmResult
SvnRemoveCommand. executeRemoveCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.status
Methods in org.apache.maven.scm.provider.svn.svnexe.command.status that throw ScmException Modifier and Type Method Description protected StatusScmResult
SvnStatusCommand. executeStatusCommand(ScmProviderRepository repo, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.tag
Methods in org.apache.maven.scm.provider.svn.svnexe.command.tag that throw ScmException Modifier and Type Method Description ScmResult
SvnTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
ScmResult
SvnTagCommand. executeTagCommand(ScmProviderRepository repo, ScmFileSet fileSet, java.lang.String tag, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.svn.svnexe.command.update
Methods in org.apache.maven.scm.provider.svn.svnexe.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
SvnUpdateCommand. executeUpdateCommand(ScmProviderRepository repo, ScmFileSet fileSet, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.add
Methods in org.apache.maven.scm.provider.synergy.command.add that throw ScmException Modifier and Type Method Description protected ScmResult
SynergyAddCommand. executeAddCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, boolean binary)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.changelog
Methods in org.apache.maven.scm.provider.synergy.command.changelog that throw ScmException Modifier and Type Method Description protected ChangeLogScmResult
SynergyChangeLogCommand. executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.checkin
Methods in org.apache.maven.scm.provider.synergy.command.checkin that throw ScmException Modifier and Type Method Description protected CheckInScmResult
SynergyCheckInCommand. executeCheckInCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.checkout
Methods in org.apache.maven.scm.provider.synergy.command.checkout that throw ScmException Modifier and Type Method Description protected CheckOutScmResult
SynergyCheckOutCommand. executeCheckOutCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion version, boolean recursive, boolean shallow)
Execute Check out command line. -
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.edit
Methods in org.apache.maven.scm.provider.synergy.command.edit that throw ScmException Modifier and Type Method Description protected ScmResult
SynergyEditCommand. executeEditCommand(ScmProviderRepository repository, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.remove
Methods in org.apache.maven.scm.provider.synergy.command.remove that throw ScmException Modifier and Type Method Description protected ScmResult
SynergyRemoveCommand. executeRemoveCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String message)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.status
Methods in org.apache.maven.scm.provider.synergy.command.status that throw ScmException Modifier and Type Method Description protected StatusScmResult
SynergyStatusCommand. executeStatusCommand(ScmProviderRepository repository, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.tag
Methods in org.apache.maven.scm.provider.synergy.command.tag that throw ScmException Modifier and Type Method Description protected ScmResult
SynergyTagCommand. executeTagCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
protected ScmResult
SynergyTagCommand. executeTagCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tag, ScmTagParameters scmTagParameters)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.unedit
Methods in org.apache.maven.scm.provider.synergy.command.unedit that throw ScmException Modifier and Type Method Description protected ScmResult
SynergyUnEditCommand. executeUnEditCommand(ScmProviderRepository repository, ScmFileSet fileSet)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.command.update
Methods in org.apache.maven.scm.provider.synergy.command.update that throw ScmException Modifier and Type Method Description protected UpdateScmResult
SynergyUpdateCommand. executeUpdateCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion version)
-
Uses of ScmException in org.apache.maven.scm.provider.synergy.util
Methods in org.apache.maven.scm.provider.synergy.util that throw ScmException Modifier and Type Method Description void
SynergyTaskManager. checkinDefaultTask(ScmLogger logger, java.lang.String comment, java.lang.String ccmAddr)
Check in (that is: complete) the default task.static void
SynergyUtil. checkinDefaultTask(ScmLogger logger, java.lang.String comment, java.lang.String ccmAddr)
Checkin the default task.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. checkinFiles(java.util.List<java.io.File> files, java.lang.String comment, java.lang.String ccmAddr)
Create commandline to checkin a filesetstatic void
SynergyUtil. checkinFiles(ScmLogger logger, java.util.List<java.io.File> files, java.lang.String comment, java.lang.String ccmAddr)
Checkin a file set.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. checkinProject(java.lang.String projectSpec, java.lang.String comment, java.lang.String ccmAddr)
Create commandline to checkin a projectstatic void
SynergyUtil. checkinProject(ScmLogger logger, java.lang.String projectSpec, java.lang.String comment, java.lang.String ccmAddr)
Checkin a given project.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. checkinTask(java.lang.String taskSpecs, java.lang.String comment, java.lang.String ccmAddr)
Create command line for checkin a taskstatic void
SynergyUtil. checkinTask(ScmLogger logger, int taskNumber, java.lang.String comment, java.lang.String ccmAddr)
Checkin a task.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. checkoutFiles(java.util.List<java.io.File> files, java.lang.String ccmAddr)
Create commandline to checkout a fileset.static void
SynergyUtil. checkoutFiles(ScmLogger logger, java.util.List<java.io.File> files, java.lang.String ccmAddr)
Checkout given files or directory.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. checkoutProject(java.io.File directory, java.lang.String projectSpec, ScmVersion version, java.lang.String purpose, java.lang.String release, java.lang.String ccmAddr)
Create commandline to checkout a projectstatic void
SynergyUtil. checkoutProject(ScmLogger logger, java.io.File directory, java.lang.String projectSpec, ScmVersion version, java.lang.String purpose, java.lang.String release, java.lang.String ccmAddr)
Checkout a given project.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. create(java.util.List<java.io.File> files, java.lang.String message, java.lang.String ccmAddr)
Create command line for adding a fileset to a projectstatic void
SynergyUtil. create(ScmLogger logger, java.io.File file, java.lang.String message, java.lang.String ccmAddr)
Add new file to Synergy database.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. createBaseline(java.lang.String projectSpec, java.lang.String name, java.lang.String release, java.lang.String purpose, java.lang.String ccmAddr)
Create command line for creating a baseline.static void
SynergyUtil. createBaseline(ScmLogger logger, java.lang.String projectSpec, java.lang.String name, java.lang.String release, java.lang.String purpose, java.lang.String ccmAddr)
Create a baseline.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. createTask(java.lang.String synopsis, java.lang.String release, boolean defaultTask, java.lang.String ccmAddr)
Create command line for creating a taskint
SynergyTaskManager. createTask(ScmLogger logger, java.lang.String synopsis, java.lang.String release, boolean defaultTask, java.lang.String ccmAddr)
If necessary create a new task.static int
SynergyUtil. createTask(ScmLogger logger, java.lang.String synopsis, java.lang.String release, boolean defaultTask, java.lang.String ccmAddr)
Create new task.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. delete(java.util.List<java.io.File> files, java.lang.String ccmAddr, boolean replace)
Create command line for deleting file(s).static void
SynergyUtil. delete(ScmLogger logger, java.io.File file, java.lang.String ccmAddr, boolean replace)
Delete file from Synergy database.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. delimiter(java.lang.String ccmAddr)
Create commandline to get Synergy database delimiterstatic java.lang.String
SynergyUtil. delimiter(ScmLogger logger, java.lang.String ccmAddr)
Get Database delimiterstatic org.codehaus.plexus.util.cli.Commandline
SynergyCCM. dir(java.io.File directory, java.lang.String format, java.lang.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 java.util.List<SynergyTask>
SynergyUtil. getCompletedTasks(ScmLogger logger, java.lang.String projectSpec, java.util.Date startDate, java.util.Date endDate, java.lang.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, java.lang.String ccmAddr)
Get the number of the current (ie default) task.static java.util.List<ChangeFile>
SynergyUtil. getModifiedObjects(ScmLogger logger, int numTask, java.lang.String ccmAddr)
Populate the object list of a Modification by querying for objects associated with the task.static java.io.File
SynergyUtil. getWorkArea(ScmLogger logger, java.lang.String projectSpec, java.lang.String ccmAddr)
Get the work area of a given project.static java.util.List<java.lang.String>
SynergyUtil. getWorkingFiles(ScmLogger logger, java.lang.String projectSpec, java.lang.String release, java.lang.String ccmAddr)
Get working file(s) in a given project.static java.lang.String
SynergyUtil. getWorkingProject(ScmLogger logger, java.lang.String projectSpec, java.lang.String username, java.lang.String ccmAddr)
Get a working project whose predecessor is given.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. query(java.lang.String query, java.lang.String format, java.lang.String ccmAddr)
Create commandline for query.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. reconcileUdb(java.lang.String projectSpec, java.lang.String ccmAddr)
Create command line to reconcile a project with udb option.static void
SynergyUtil. reconcileUdb(ScmLogger logger, java.lang.String projectSpec, java.lang.String ccmAddr)
Reconcile a project with -udb option.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. reconcileUwa(java.lang.String projectSpec, java.lang.String ccmAddr)
Create command line to reconcile a project with uwa option.static void
SynergyUtil. reconcileUwa(ScmLogger logger, java.lang.String projectSpec, java.lang.String ccmAddr)
Reconcile a project with -uwa option.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. reconfigure(java.lang.String projectSpec, java.lang.String ccmAddr)
Create commandline to reconfigure a project.static void
SynergyUtil. reconfigure(ScmLogger logger, java.lang.String projectSpec, java.lang.String ccmAddr)
Reconfigure a project.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. reconfigureProperties(java.lang.String projectSpec, java.lang.String ccmAddr)
Create commandline to reconfigure properties of a project.static void
SynergyUtil. reconfigureProperties(ScmLogger logger, java.lang.String projectSpec, java.lang.String ccmAddr)
Reconfigure properties of a project.static java.lang.String
SynergyUtil. removePrefix(java.io.File prefix, java.io.File file)
Remove prefix path from a path.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. setDefaultTask(int task, java.lang.String ccmAddr)
Create commandline to set current (i.e.static void
SynergyUtil. setDefaultTask(ScmLogger logger, int task, java.lang.String ccmAddr)
Set the current (ie default) task.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. showDefaultTask(java.lang.String ccmAddr)
Create commandline to get current (i.e.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. showTaskObjects(int taskNumber, java.lang.String format, java.lang.String ccmAddr)
Create commandline for getting list of objects in a task.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. showWorkArea(java.lang.String projectSpec, java.lang.String ccmAddr)
Create commandline to get workarea informations for a given project.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. start(java.lang.String username, java.lang.String password, SynergyRole role)
Create commandline to start a Synergy sessionstatic java.lang.String
SynergyUtil. start(ScmLogger logger, java.lang.String username, java.lang.String password, SynergyRole role)
Start a session Synergystatic org.codehaus.plexus.util.cli.Commandline
SynergyCCM. startRemote(java.lang.String username, java.lang.String password, SynergyRole role)
Create commandline to start a remote Synergy sessionstatic org.codehaus.plexus.util.cli.Commandline
SynergyCCM. stop(java.lang.String ccmAddr)
Create commandline to stop a Synergy sessionstatic void
SynergyUtil. stop(ScmLogger logger, java.lang.String ccmAddr)
Stop a ccm session.static org.codehaus.plexus.util.cli.Commandline
SynergyCCM. synchronize(java.lang.String projectSpec, java.lang.String ccmAddr)
Create commandline to synchronize a projectstatic void
SynergyUtil. synchronize(ScmLogger logger, java.lang.String projectSpec, java.lang.String ccmAddr)
Synchronize a given project. -
Uses of ScmException in org.apache.maven.scm.provider.tfs
-
Uses of ScmException in org.apache.maven.scm.provider.tfs.command
Methods in org.apache.maven.scm.provider.tfs.command that throw ScmException Modifier and Type Method Description int
TfsCommand. execute(org.codehaus.plexus.util.cli.StreamConsumer out, ErrorStreamConsumer err)
protected ScmResult
TfsAddCommand. executeAddCommand(ScmProviderRepository r, ScmFileSet f, java.lang.String m, boolean b)
protected ScmResult
TfsBranchCommand. executeBranchCommand(ScmProviderRepository r, ScmFileSet f, java.lang.String branch, java.lang.String message)
protected ChangeLogScmResult
TfsChangeLogCommand. executeChangeLogCommand(ScmProviderRepository r, ScmFileSet f, java.util.Date startDate, java.util.Date endDate, ScmBranch branch, java.lang.String datePattern)
protected CheckInScmResult
TfsCheckInCommand. executeCheckInCommand(ScmProviderRepository r, ScmFileSet f, java.lang.String m, ScmVersion v)
protected CheckOutScmResult
TfsCheckOutCommand. executeCheckOutCommand(ScmProviderRepository r, ScmFileSet f, ScmVersion v, boolean recursive, boolean shallow)
protected ScmResult
TfsEditCommand. executeEditCommand(ScmProviderRepository r, ScmFileSet f)
protected ListScmResult
TfsListCommand. executeListCommand(ScmProviderRepository r, ScmFileSet f, boolean recursive, ScmVersion v)
protected StatusScmResult
TfsStatusCommand. executeStatusCommand(ScmProviderRepository r, ScmFileSet f)
protected ScmResult
TfsTagCommand. executeTagCommand(ScmProviderRepository r, ScmFileSet f, java.lang.String tag, java.lang.String message)
protected ScmResult
TfsTagCommand. executeTagCommand(ScmProviderRepository r, ScmFileSet f, java.lang.String tag, ScmTagParameters scmTagParameters)
protected ScmResult
TfsUnEditCommand. executeUnEditCommand(ScmProviderRepository r, ScmFileSet f)
int
TfsCheckOutCommand. executeUnmapCommand(ScmProviderRepository r, ScmFileSet f)
protected UpdateScmResult
TfsUpdateCommand. executeUpdateCommand(ScmProviderRepository r, ScmFileSet f, ScmVersion v)
-
Uses of ScmException in org.apache.maven.scm.provider.tfs.command.blame
Methods in org.apache.maven.scm.provider.tfs.command.blame that throw ScmException Modifier and Type Method Description BlameScmResult
TfsBlameCommand. executeBlameCommand(ScmProviderRepository repo, ScmFileSet workingDirectory, java.lang.String filename)
-
Uses of ScmException in org.apache.maven.scm.repository
Subclasses of ScmException in org.apache.maven.scm.repository Modifier and Type Class Description class
ScmRepositoryException
-