Uses of Class
org.apache.maven.scm.ScmException

Packages that use ScmException
org.apache.maven.scm   
org.apache.maven.scm.command   
org.apache.maven.scm.command.add   
org.apache.maven.scm.command.blame   
org.apache.maven.scm.command.branch   
org.apache.maven.scm.command.changelog   
org.apache.maven.scm.command.checkin   
org.apache.maven.scm.command.checkout   
org.apache.maven.scm.command.diff   
org.apache.maven.scm.command.edit   
org.apache.maven.scm.command.export   
org.apache.maven.scm.command.fileinfo   
org.apache.maven.scm.command.list   
org.apache.maven.scm.command.lock   
org.apache.maven.scm.command.login   
org.apache.maven.scm.command.mkdir   
org.apache.maven.scm.command.remoteinfo   
org.apache.maven.scm.command.remove   
org.apache.maven.scm.command.status   
org.apache.maven.scm.command.tag   
org.apache.maven.scm.command.unedit   
org.apache.maven.scm.command.unlock   
org.apache.maven.scm.command.update   
org.apache.maven.scm.manager   
org.apache.maven.scm.provider   
org.apache.maven.scm.repository   
 

Uses of ScmException in org.apache.maven.scm
 

Subclasses of ScmException in org.apache.maven.scm
 class NoSuchCommandScmException
           
 

Methods in org.apache.maven.scm that throw ScmException
 boolean CommandParameters.getBoolean(CommandParameter parameter)
          Return the parameter value as boolean.
 boolean CommandParameters.getBoolean(CommandParameter parameter, boolean defaultValue)
          Return the parameter value as boolean.
 Date CommandParameters.getDate(CommandParameter parameter)
          Return the parameter value as Date.
 Date CommandParameters.getDate(CommandParameter parameter, Date defaultValue)
          Return the parameter value as String or the default value if it doesn't exist.
 File[] CommandParameters.getFileArray(CommandParameter parameter)
           
 File[] CommandParameters.getFileArray(CommandParameter parameter, File[] defaultValue)
           
 int CommandParameters.getInt(CommandParameter parameter)
          Return the parameter value as int.
 int CommandParameters.getInt(CommandParameter parameter, int defaultValue)
          Return the parameter value as int or the default value if it doesn't exist.
 ScmBranchParameters CommandParameters.getScmBranchParameters(CommandParameter parameter)
           
 ScmTagParameters CommandParameters.getScmTagParameters(CommandParameter parameter)
           
 ScmVersion CommandParameters.getScmVersion(CommandParameter parameter)
          Return the parameter value as ScmVersion.
 ScmVersion CommandParameters.getScmVersion(CommandParameter parameter, ScmVersion defaultValue)
          Return the parameter value as ScmVersion or the default value.
 String CommandParameters.getString(CommandParameter parameter)
          Return the parameter value as String.
 String CommandParameters.getString(CommandParameter parameter, String defaultValue)
          Return the parameter value or the default value if it doesn't exist.
 void CommandParameters.setDate(CommandParameter parameter, Date date)
          Set a parameter value.
 void CommandParameters.setInt(CommandParameter parameter, int value)
          Set a parameter value.
 void CommandParameters.setScmBranchParameters(CommandParameter parameter, ScmBranchParameters scmBranchParameters)
           
 void CommandParameters.setScmTagParameters(CommandParameter parameter, ScmTagParameters scmTagParameters)
           
 void CommandParameters.setScmVersion(CommandParameter parameter, ScmVersion scmVersion)
          Set a parameter value.
 void CommandParameters.setString(CommandParameter parameter, String value)
          Set a parameter value.
 

Uses of ScmException in org.apache.maven.scm.command
 

Methods in org.apache.maven.scm.command that throw ScmException
 ScmResult Command.execute(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 ScmResult AbstractCommand.execute(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
          
protected abstract  ScmResult AbstractCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 

Uses of ScmException in org.apache.maven.scm.command.add
 

Methods in org.apache.maven.scm.command.add that throw ScmException
protected abstract  ScmResult AbstractAddCommand.executeAddCommand(ScmProviderRepository repository, ScmFileSet fileSet, 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
abstract  BlameScmResult AbstractBlameCommand.executeBlameCommand(ScmProviderRepository repo, ScmFileSet workingDirectory, String filename)
           
protected  ScmResult AbstractBlameCommand.executeCommand(ScmProviderRepository repository, ScmFileSet workingDirectory, CommandParameters parameters)
           
 String BlameScmRequest.getFilename()
           
 void BlameScmRequest.setFilename(String filename)
           
 

Uses of ScmException in org.apache.maven.scm.command.branch
 

Methods in org.apache.maven.scm.command.branch that throw ScmException
protected  ScmResult AbstractBranchCommand.executeBranchCommand(ScmProviderRepository repository, ScmFileSet fileSet, String branchName, ScmBranchParameters scmBranchParameters)
          default impl to provide backward comp
protected abstract  ScmResult AbstractBranchCommand.executeBranchCommand(ScmProviderRepository repository, ScmFileSet fileSet, String branchName, String message)
           
 ScmResult AbstractBranchCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
          
 

Uses of ScmException in org.apache.maven.scm.command.changelog
 

Methods in org.apache.maven.scm.command.changelog that throw ScmException
protected  ChangeLogScmResult AbstractChangeLogCommand.executeChangeLogCommand(ChangeLogScmRequest request)
           
protected abstract  ChangeLogScmResult AbstractChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, ScmBranch branch, String datePattern)
          Deprecated. 
protected  ChangeLogScmResult AbstractChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, String datePattern)
          Deprecated. 
 ScmResult ChangeLogCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 ScmResult AbstractChangeLogCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
          
 String ChangeLogScmRequest.getDatePattern()
           
 Date ChangeLogScmRequest.getEndDate()
           
 ScmVersion ChangeLogScmRequest.getEndRevision()
           
 Integer ChangeLogScmRequest.getLimit()
           
 int ChangeLogScmRequest.getNumDays()
           
 ScmBranch ChangeLogScmRequest.getScmBranch()
           
 Date ChangeLogScmRequest.getStartDate()
           
 ScmVersion ChangeLogScmRequest.getStartRevision()
           
 void ChangeLogScmRequest.setDatePattern(String datePattern)
           
 void ChangeLogScmRequest.setDateRange(Date startDate, Date endDate)
           
 void ChangeLogScmRequest.setEndDate(Date endDate)
           
 void ChangeLogScmRequest.setEndRevision(ScmVersion endRevision)
           
 void ChangeLogScmRequest.setLimit(Integer limit)
           
 void ChangeLogScmRequest.setNumDays(int numDays)
           
 void ChangeLogScmRequest.setScmBranch(ScmBranch scmBranch)
           
 void ChangeLogScmRequest.setStartDate(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
protected abstract  CheckInScmResult AbstractCheckInCommand.executeCheckInCommand(ScmProviderRepository repository, ScmFileSet fileSet, 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
protected  CheckOutScmResult AbstractCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)
          Execute Check out command line in a recursive check out way.
protected abstract  CheckOutScmResult AbstractCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, boolean recursive)
          Execute Check out command line.
 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
 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
 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
protected  ScmResult AbstractExportCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
          
protected abstract  ExportScmResult AbstractExportCommand.executeExportCommand(ScmProviderRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, String outputDirectory)
           
 

Uses of ScmException in org.apache.maven.scm.command.fileinfo
 

Methods in org.apache.maven.scm.command.fileinfo that throw ScmException
 ScmResult AbstractFileInfoCommand.executeCommand(ScmProviderRepository repository, File workingDirectory, CommandParameters parameters)
           
protected abstract  ScmResult AbstractFileInfoCommand.executeFileInfoCommand(ScmProviderRepository repository, File workingDirectory, String filename)
           
 

Uses of ScmException in org.apache.maven.scm.command.list
 

Methods in org.apache.maven.scm.command.list that throw ScmException
 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
 ScmResult AbstractLockCommand.executeCommand(ScmProviderRepository repository, File workingDirectory, CommandParameters parameters)
           
protected abstract  ScmResult AbstractLockCommand.executeLockCommand(ScmProviderRepository repository, File workingDirectory, String filename)
           
 

Uses of ScmException in org.apache.maven.scm.command.login
 

Methods in org.apache.maven.scm.command.login that throw ScmException
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
protected  ScmResult AbstractMkdirCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
          
protected abstract  MkdirScmResult AbstractMkdirCommand.executeMkdirCommand(ScmProviderRepository repository, ScmFileSet fileSet, String message, boolean createInLocal)
          Creates directories in the remote repository.
 

Uses of ScmException in org.apache.maven.scm.command.remoteinfo
 

Methods in org.apache.maven.scm.command.remoteinfo that throw ScmException
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
protected  ScmResult AbstractRemoveCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
          
protected abstract  ScmResult AbstractRemoveCommand.executeRemoveCommand(ScmProviderRepository repository, ScmFileSet fileSet, String message)
           
 

Uses of ScmException in org.apache.maven.scm.command.status
 

Methods in org.apache.maven.scm.command.status that throw ScmException
 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
 ScmResult AbstractTagCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
          
protected abstract  ScmResult AbstractTagCommand.executeTagCommand(ScmProviderRepository repository, ScmFileSet fileSet, String tagName, ScmTagParameters scmTagParameters)
           
protected  ScmResult AbstractTagCommand.executeTagCommand(ScmProviderRepository repository, ScmFileSet fileSet, String tagName, String message)
          Deprecated. use method AbstractTagCommand.executeTagCommand(ScmProviderRepository, ScmFileSet, String, ScmTagParameters)
 

Uses of ScmException in org.apache.maven.scm.command.unedit
 

Methods in org.apache.maven.scm.command.unedit that throw ScmException
 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
 ScmResult AbstractUnlockCommand.executeCommand(ScmProviderRepository repository, File workingDirectory, CommandParameters parameters)
           
protected abstract  ScmResult AbstractUnlockCommand.executeUnlockCommand(ScmProviderRepository repository, File workingDirectory)
           
 

Uses of ScmException in org.apache.maven.scm.command.update
 

Methods in org.apache.maven.scm.command.update that throw ScmException
 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
 class NoSuchScmProviderException
           
 

Methods in org.apache.maven.scm.manager that throw ScmException
 AddScmResult ScmManager.add(ScmRepository repository, ScmFileSet fileSet)
          Adds the given files to the source control system
 AddScmResult AbstractScmManager.add(ScmRepository repository, ScmFileSet fileSet)
          Adds the given files to the source control system
 AddScmResult ScmManager.add(ScmRepository repository, ScmFileSet fileSet, String message)
          Adds the given files to the source control system
 AddScmResult AbstractScmManager.add(ScmRepository repository, ScmFileSet fileSet, String message)
          Adds the given files to the source control system
 BlameScmResult ScmManager.blame(BlameScmRequest blameScmRequest)
           
 BlameScmResult AbstractScmManager.blame(BlameScmRequest blameScmRequest)
           
 BlameScmResult ScmManager.blame(ScmRepository repository, ScmFileSet fileSet, String filename)
          Returns the blame of specified file
 BlameScmResult AbstractScmManager.blame(ScmRepository repository, ScmFileSet fileSet, String filename)
          Returns the blame of specified file
 BranchScmResult ScmManager.branch(ScmRepository repository, ScmFileSet fileSet, String branchName)
          Branch (or label in some systems) will create a branch of the source file with a certain branch name
 BranchScmResult AbstractScmManager.branch(ScmRepository repository, ScmFileSet fileSet, String branchName)
          Branch (or label in some systems) will create a branch of the source file with a certain branch name
 BranchScmResult ScmManager.branch(ScmRepository repository, ScmFileSet fileSet, String branchName, String message)
          Branch (or label in some systems) will create a branch of the source file with a certain branch name
 BranchScmResult AbstractScmManager.branch(ScmRepository repository, ScmFileSet fileSet, String branchName, String message)
          Branch (or label in some systems) will create a branch of the source file with a certain branch name
 ChangeLogScmResult ScmManager.changeLog(ChangeLogScmRequest scmRequest)
          Returns the changes that have happend in the source control system in a certain period of time.
 ChangeLogScmResult AbstractScmManager.changeLog(ChangeLogScmRequest scmRequest)
          Returns the changes that have happend in the source control system in a certain period of time.
 ChangeLogScmResult ScmManager.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, ScmBranch branch)
          Deprecated. use ScmManager.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmManager.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, ScmBranch branch)
          Returns the changes that have happend in the source control system in a certain period of time.
 ChangeLogScmResult ScmManager.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, ScmBranch branch, String datePattern)
          Deprecated. use ScmManager.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmManager.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, ScmBranch branch, String datePattern)
          Returns the changes that have happend in the source control system in a certain period of time.
 ChangeLogScmResult ScmManager.changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
          Deprecated. use ScmManager.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmManager.changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
          Returns the changes that have happend in the source control system between two tags.
 ChangeLogScmResult ScmManager.changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, String datePattern)
          Deprecated. use ScmManager.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmManager.changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, String datePattern)
          Returns the changes that have happend in the source control system between two tags.
 CheckInScmResult ScmManager.checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, String message)
          Save the changes you have done into the repository.
 CheckInScmResult AbstractScmManager.checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, String message)
          Save the changes you have done into the repository.
 CheckInScmResult ScmManager.checkIn(ScmRepository repository, ScmFileSet fileSet, String message)
          Save the changes you have done into the repository.
 CheckInScmResult AbstractScmManager.checkIn(ScmRepository repository, ScmFileSet fileSet, String message)
          Save the changes you have done into the repository.
 CheckOutScmResult ScmManager.checkOut(ScmRepository repository, ScmFileSet fileSet)
          Create a copy of the repository on your local machine
 CheckOutScmResult AbstractScmManager.checkOut(ScmRepository repository, ScmFileSet fileSet)
          Create a copy of the repository on your local machine
 CheckOutScmResult ScmManager.checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, boolean recursive)
          Create a copy of the repository on your local machine.
 CheckOutScmResult AbstractScmManager.checkOut(ScmRepository repository, ScmFileSet fileSet, boolean recursive)
          Create a copy of the repository on your local machine.
 CheckOutScmResult ScmManager.checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
          Create a copy of the repository on your local machine
 CheckOutScmResult AbstractScmManager.checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
          Create a copy of the repository on your local machine
 CheckOutScmResult ScmManager.checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion version, boolean recursive)
          Create a copy of the repository on your local machine.
 CheckOutScmResult AbstractScmManager.checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean recursive)
          Create a copy of the repository on your local machine.
 DiffScmResult ScmManager.diff(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion startVersion, ScmVersion endVersion)
          Create a diff between two branch/tag/revision.
 DiffScmResult AbstractScmManager.diff(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
          Create a diff between two branch/tag/revision.
 EditScmResult ScmManager.edit(ScmRepository repository, ScmFileSet fileSet)
          Make a file editable.
 EditScmResult AbstractScmManager.edit(ScmRepository repository, ScmFileSet fileSet)
          Make a file editable.
 ExportScmResult ScmManager.export(ScmRepository repository, ScmFileSet fileSet)
          Create an exported copy of the repository on your local machine
 ExportScmResult AbstractScmManager.export(ScmRepository repository, ScmFileSet fileSet)
          Create an exported copy of the repository on your local machine
 ExportScmResult ScmManager.export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
          Create an exported copy of the repository on your local machine
 ExportScmResult AbstractScmManager.export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
          Create an exported copy of the repository on your local machine
 ExportScmResult ScmManager.export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String outputDirectory)
          Create an exported copy of the repository on your local machine
 ExportScmResult AbstractScmManager.export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String outputDirectory)
          Create an exported copy of the repository on your local machine
 ExportScmResult ScmManager.export(ScmRepository repository, ScmFileSet fileSet, String outputDirectory)
          Create an exported copy of the repository on your local machine
 ExportScmResult AbstractScmManager.export(ScmRepository repository, ScmFileSet fileSet, String outputDirectory)
          Create an exported copy of the repository on your local machine
 ListScmResult ScmManager.list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion version)
          List each element (files and directories) of fileSet as they exist in the repository.
 ListScmResult AbstractScmManager.list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion version)
          List each element (files and directories) of fileSet as they exist in the repository.
 MkdirScmResult ScmManager.mkdir(ScmRepository repository, ScmFileSet fileSet, String message, boolean createInLocal)
          Create new directory/directories in the repository.
 MkdirScmResult AbstractScmManager.mkdir(ScmRepository repository, ScmFileSet fileSet, String message, boolean createInLocal)
          Create new directory/directories in the repository.
 RemoveScmResult ScmManager.remove(ScmRepository repository, ScmFileSet fileSet, String message)
          Removes the given files from the source control system
 RemoveScmResult AbstractScmManager.remove(ScmRepository repository, ScmFileSet fileSet, String message)
          Removes the given files from the source control system
 StatusScmResult ScmManager.status(ScmRepository repository, ScmFileSet fileSet)
          Returns the status of the files in the source control system.
 StatusScmResult AbstractScmManager.status(ScmRepository repository, ScmFileSet fileSet)
          Returns the status of the files in the source control system.
 TagScmResult ScmManager.tag(ScmRepository repository, ScmFileSet fileSet, String tagName)
          Tag (or label in some systems) will tag the source file with a certain tag
 TagScmResult AbstractScmManager.tag(ScmRepository repository, ScmFileSet fileSet, String tagName)
          Tag (or label in some systems) will tag the source file with a certain tag
 TagScmResult ScmManager.tag(ScmRepository repository, ScmFileSet fileSet, String tagName, String message)
          Tag (or label in some systems) will tag the source file with a certain tag
 TagScmResult AbstractScmManager.tag(ScmRepository repository, ScmFileSet fileSet, String tagName, String message)
          Tag (or label in some systems) will tag the source file with a certain tag
 UnEditScmResult ScmManager.unedit(ScmRepository repository, ScmFileSet fileSet)
          Make a file no longer editable.
 UnEditScmResult AbstractScmManager.unedit(ScmRepository repository, ScmFileSet fileSet)
          Make a file no longer editable.
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet, Date lastUpdate)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet, Date lastUpdate)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet, Date lastUpdate, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet, Date lastUpdate, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmManager.update(ScmRepository repository, ScmFileSet fileSet, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmManager.update(ScmRepository repository, ScmFileSet fileSet, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 

Uses of ScmException in org.apache.maven.scm.provider
 

Methods in org.apache.maven.scm.provider that throw ScmException
 AddScmResult AbstractScmProvider.add(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 AddScmResult ScmProvider.add(ScmRepository repository, ScmFileSet fileSet)
          Adds the given files to the source control system
 AddScmResult AbstractScmProvider.add(ScmRepository repository, ScmFileSet fileSet)
          Adds the given files to the source control system
 AddScmResult ScmProvider.add(ScmRepository repository, ScmFileSet fileSet, CommandParameters commandParameters)
          Adds the given files to the source control system
 AddScmResult AbstractScmProvider.add(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 AddScmResult ScmProvider.add(ScmRepository repository, ScmFileSet fileSet, String message)
          Adds the given files to the source control system
 AddScmResult AbstractScmProvider.add(ScmRepository repository, ScmFileSet fileSet, String message)
          Adds the given files to the source control system
 BlameScmResult ScmProvider.blame(BlameScmRequest blameScmRequest)
           
 BlameScmResult AbstractScmProvider.blame(BlameScmRequest blameScmRequest)
           
protected  BlameScmResult AbstractScmProvider.blame(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 BlameScmResult ScmProvider.blame(ScmRepository repository, ScmFileSet fileSet, String filename)
          Deprecated. use blame with BlameScmRequest parameter
 BlameScmResult AbstractScmProvider.blame(ScmRepository repository, ScmFileSet fileSet, String filename)
          Returns the blame of specified file
protected  BranchScmResult AbstractScmProvider.branch(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 BranchScmResult ScmProvider.branch(ScmRepository repository, ScmFileSet fileSet, String branchName)
          Deprecated. use #branch(ScmRepository, ScmFileSet, String, String, ScmBranchParameters)
 BranchScmResult AbstractScmProvider.branch(ScmRepository repository, ScmFileSet fileSet, String branchName)
          Branch (or label in some systems) will create a branch of the source file with a certain branch name
 BranchScmResult ScmProvider.branch(ScmRepository repository, ScmFileSet fileSet, String branchName, ScmBranchParameters scmBranchParameters)
          Branch (or label in some systems) will create a branch of the source file with a certain branch name
 BranchScmResult AbstractScmProvider.branch(ScmRepository repository, ScmFileSet fileSet, String branchName, ScmBranchParameters scmBranchParameters)
           
 BranchScmResult ScmProvider.branch(ScmRepository repository, ScmFileSet fileSet, String branchName, String message)
          Deprecated. use #branch(ScmRepository, ScmFileSet, String, String, ScmBranchParameters)
 BranchScmResult AbstractScmProvider.branch(ScmRepository repository, ScmFileSet fileSet, String branchName, String message)
          Branch (or label in some systems) will create a branch of the source file with a certain branch name
 ChangeLogScmResult ScmProvider.changeLog(ChangeLogScmRequest scmRequest)
          Returns the changes that have happend in the source control system in a certain period of time.
 ChangeLogScmResult AbstractScmProvider.changeLog(ChangeLogScmRequest request)
          Returns the changes that have happend in the source control system in a certain period of time.
protected  ChangeLogScmResult AbstractScmProvider.changelog(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 ChangeLogScmResult ScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, ScmBranch branch)
          Deprecated. use ScmProvider.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, ScmBranch branch)
          Returns the changes that have happend in the source control system in a certain period of time.
 ChangeLogScmResult ScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, ScmBranch branch, String datePattern)
          Deprecated. use ScmProvider.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, ScmBranch branch, String datePattern)
          Returns the changes that have happend in the source control system in a certain period of time.
 ChangeLogScmResult ScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, String branch)
          Deprecated. you must use ScmProvider.changeLog(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, java.util.Date, java.util.Date, int, org.apache.maven.scm.ScmBranch)
 ChangeLogScmResult AbstractScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, String branch)
          Deprecated.  
 ChangeLogScmResult ScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, String branch, String datePattern)
          Deprecated. use ScmProvider.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, Date startDate, Date endDate, int numDays, String branch, String datePattern)
          Deprecated.  
 ChangeLogScmResult ScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
          Deprecated. use ScmProvider.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
          Returns the changes that have happend in the source control system between two tags.
 ChangeLogScmResult ScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startRevision, ScmVersion endRevision, String datePattern)
          Deprecated. use ScmProvider.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion, String datePattern)
          Returns the changes that have happend in the source control system between two tags.
 ChangeLogScmResult ScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, String startTag, String endTag)
          Deprecated. use ScmProvider.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, String startTag, String endTag)
          Deprecated.  
 ChangeLogScmResult ScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, String startTag, String endTag, String datePattern)
          Deprecated. use ScmProvider.changeLog(org.apache.maven.scm.command.changelog.ChangeLogScmRequest) instead
 ChangeLogScmResult AbstractScmProvider.changeLog(ScmRepository repository, ScmFileSet fileSet, String startTag, String endTag, String datePattern)
          Deprecated.  
protected  CheckInScmResult AbstractScmProvider.checkin(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 CheckInScmResult ScmProvider.checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, String message)
          Save the changes you have done into the repository.
 CheckInScmResult AbstractScmProvider.checkIn(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, String message)
          Save the changes you have done into the repository.
 CheckInScmResult ScmProvider.checkIn(ScmRepository repository, ScmFileSet fileSet, String message)
          Save the changes you have done into the repository.
 CheckInScmResult AbstractScmProvider.checkIn(ScmRepository repository, ScmFileSet fileSet, String message)
          Save the changes you have done into the repository.
 CheckInScmResult ScmProvider.checkIn(ScmRepository repository, ScmFileSet fileSet, String tag, String message)
          Deprecated. you must use ScmProvider.checkIn(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion, String)
 CheckInScmResult AbstractScmProvider.checkIn(ScmRepository repository, ScmFileSet fileSet, String tag, String message)
          Deprecated.  
protected  CheckOutScmResult AbstractScmProvider.checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 CheckOutScmResult ScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet)
          Create a copy of the repository on your local machine
 CheckOutScmResult AbstractScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet)
          Create a copy of the repository on your local machine
 CheckOutScmResult ScmProvider.checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, boolean recursive)
          Create a copy of the repository on your local machine.
 CheckOutScmResult AbstractScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet, boolean recursive)
          Create a copy of the repository on your local machine.
 CheckOutScmResult ScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
          Create a copy of the repository on your local machine
 CheckOutScmResult AbstractScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)
          Create a copy of the repository on your local machine
 CheckOutScmResult ScmProvider.checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion version, boolean recursive)
          Create a copy of the repository on your local machine.
 CheckOutScmResult AbstractScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, boolean recursive)
          Create a copy of the repository on your local machine.
 CheckOutScmResult ScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet, String tag)
          Deprecated. you must use ScmProvider.checkOut(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion)
 CheckOutScmResult AbstractScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet, String tag)
          Deprecated.  
 CheckOutScmResult ScmProvider.checkOut(ScmRepository scmRepository, ScmFileSet scmFileSet, String tag, boolean recursive)
          Deprecated. you must use ScmProvider.checkOut(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion, boolean)
 CheckOutScmResult AbstractScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet, String tag, boolean recursive)
          Deprecated.  
protected  DiffScmResult AbstractScmProvider.diff(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 DiffScmResult ScmProvider.diff(ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion startVersion, ScmVersion endVersion)
          Create a diff between two branch/tag/revision.
 DiffScmResult AbstractScmProvider.diff(ScmRepository repository, ScmFileSet fileSet, ScmVersion startVersion, ScmVersion endVersion)
          Create a diff between two branch/tag/revision.
 DiffScmResult ScmProvider.diff(ScmRepository scmRepository, ScmFileSet scmFileSet, String startRevision, String endRevision)
          Deprecated. you must use ScmProvider.diff(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion, org.apache.maven.scm.ScmVersion)
 DiffScmResult AbstractScmProvider.diff(ScmRepository repository, ScmFileSet fileSet, String startRevision, String endRevision)
          Deprecated.  
protected  EditScmResult AbstractScmProvider.edit(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 EditScmResult ScmProvider.edit(ScmRepository repository, ScmFileSet fileSet)
          Make a file editable.
 EditScmResult AbstractScmProvider.edit(ScmRepository repository, ScmFileSet fileSet)
          Make a file editable.
protected  ExportScmResult AbstractScmProvider.export(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 ExportScmResult ScmProvider.export(ScmRepository repository, ScmFileSet fileSet)
          Create an exported copy of the repository on your local machine
 ExportScmResult AbstractScmProvider.export(ScmRepository repository, ScmFileSet fileSet)
          Create an exported copy of the repository on your local machine
 ExportScmResult ScmProvider.export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
          Create an exported copy of the repository on your local machine
 ExportScmResult AbstractScmProvider.export(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)
          Create an exported copy of the repository on your local machine
 ExportScmResult ScmProvider.export(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String outputDirectory)
          Create an exported copy of the repository on your local machine
 ExportScmResult AbstractScmProvider.export(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, String outputDirectory)
          Create an exported copy of the repository on your local machine
 ExportScmResult ScmProvider.export(ScmRepository repository, ScmFileSet fileSet, String tag)
          Deprecated. you must use ScmProvider.export(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion)
 ExportScmResult AbstractScmProvider.export(ScmRepository repository, ScmFileSet fileSet, String tag)
          Deprecated.  
 ExportScmResult ScmProvider.export(ScmRepository repository, ScmFileSet fileSet, String tag, String outputDirectory)
          Deprecated. you must use ScmProvider.export(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion, String)
 ExportScmResult AbstractScmProvider.export(ScmRepository repository, ScmFileSet fileSet, String tag, String outputDirectory)
          Deprecated.  
 InfoScmResult ScmProvider.info(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 InfoScmResult AbstractScmProvider.info(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
protected  ListScmResult AbstractScmProvider.list(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
          List each element (files and directories) of fileSet as they exist in the repository.
 ListScmResult ScmProvider.list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion version)
          List each element (files and directories) of fileSet as they exist in the repository.
 ListScmResult AbstractScmProvider.list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, ScmVersion scmVersion)
          List each element (files and directories) of fileSet as they exist in the repository.
 ListScmResult ScmProvider.list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, String tag)
          Deprecated. you must use ScmProvider.list(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, boolean, org.apache.maven.scm.ScmVersion)
 ListScmResult AbstractScmProvider.list(ScmRepository repository, ScmFileSet fileSet, boolean recursive, String tag)
          List each element (files and directories) of fileSet as they exist in the repository.
protected  LoginScmResult AbstractScmProvider.login(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
protected  MkdirScmResult AbstractScmProvider.mkdir(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
          Create directory/directories in the repository.
 MkdirScmResult ScmProvider.mkdir(ScmRepository repository, ScmFileSet fileSet, String message, boolean createInLocal)
          Create directory/directories in the repository.
 MkdirScmResult AbstractScmProvider.mkdir(ScmRepository repository, ScmFileSet fileSet, String message, boolean createInLocal)
          Create directory/directories in the repository.
 RemoteInfoScmResult ScmProvider.remoteInfo(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 RemoteInfoScmResult AbstractScmProvider.remoteInfo(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
protected  RemoveScmResult AbstractScmProvider.remove(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 RemoveScmResult ScmProvider.remove(ScmRepository repository, ScmFileSet fileSet, String message)
          Removes the given files from the source control system
 RemoveScmResult AbstractScmProvider.remove(ScmRepository repository, ScmFileSet fileSet, String message)
          Removes the given files from the source control system
protected  StatusScmResult AbstractScmProvider.status(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 StatusScmResult ScmProvider.status(ScmRepository repository, ScmFileSet fileSet)
          Returns the status of the files in the source control system.
 StatusScmResult AbstractScmProvider.status(ScmRepository repository, ScmFileSet fileSet)
          Returns the status of the files in the source control system.
protected  TagScmResult AbstractScmProvider.tag(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 TagScmResult ScmProvider.tag(ScmRepository repository, ScmFileSet fileSet, String tagName)
          Deprecated. use ScmProvider.tag(ScmRepository, ScmFileSet, String, ScmTagParameters)
 TagScmResult AbstractScmProvider.tag(ScmRepository repository, ScmFileSet fileSet, String tagName)
          Tag (or label in some systems) will tag the source file with a certain tag
 TagScmResult ScmProvider.tag(ScmRepository repository, ScmFileSet fileSet, String tagName, ScmTagParameters scmTagParameters)
          Tag (or label in some systems) will tag the source file with a certain tag
 TagScmResult AbstractScmProvider.tag(ScmRepository repository, ScmFileSet fileSet, String tagName, ScmTagParameters scmTagParameters)
          Tag (or label in some systems) will tag the source file with a certain tag
 TagScmResult ScmProvider.tag(ScmRepository repository, ScmFileSet fileSet, String tagName, String message)
          Deprecated. use ScmProvider.tag(ScmRepository, ScmFileSet, String, ScmTagParameters)
 TagScmResult AbstractScmProvider.tag(ScmRepository repository, ScmFileSet fileSet, String tagName, String message)
          Tag (or label in some systems) will tag the source file with a certain tag
protected  UnEditScmResult AbstractScmProvider.unedit(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 UnEditScmResult ScmProvider.unedit(ScmRepository repository, ScmFileSet fileSet)
          Make a file no longer editable.
 UnEditScmResult AbstractScmProvider.unedit(ScmRepository repository, ScmFileSet fileSet)
          Make a file no longer editable.
protected  UpdateScmResult AbstractScmProvider.update(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, boolean runChangelog)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, boolean runChangelog)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, boolean runChangelog)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, Date lastUpdate)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, Date lastUpdate, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, Date lastUpdate, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion version, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, ScmVersion scmVersion, String datePattern)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag)
          Deprecated. you must use ScmProvider.update(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion)
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag)
          Deprecated.  
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag, boolean runChangelog)
          Deprecated. you must use ScmProvider.update(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion, boolean)
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag, boolean runChangelog)
          Deprecated.  
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag, Date lastUpdate)
          Deprecated. you must use ScmProvider.update(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion, java.util.Date)
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag, Date lastUpdate)
          Deprecated.  
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag, Date lastUpdate, String datePattern)
          Deprecated. you must use ScmProvider.update(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion, java.util.Date, String)
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag, Date lastUpdate, String datePattern)
          Deprecated.  
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag, String datePattern)
          Deprecated. you must use ScmProvider.update(org.apache.maven.scm.repository.ScmRepository, org.apache.maven.scm.ScmFileSet, org.apache.maven.scm.ScmVersion, String)
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, String tag, String datePattern)
          Deprecated.  
 

Uses of ScmException in org.apache.maven.scm.repository
 

Subclasses of ScmException in org.apache.maven.scm.repository
 class ScmRepositoryException
           
 



Copyright © 2003-2012 The Apache Software Foundation. All Rights Reserved.