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.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.fileinfo   
org.apache.maven.scm.command.listfiles   
org.apache.maven.scm.command.lock   
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.login   
org.apache.maven.scm.manager   
org.apache.maven.scm.provider   
 

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)
           
 java.util.Date CommandParameters.getDate(CommandParameter parameter)
           
 java.util.Date CommandParameters.getDate(CommandParameter parameter, java.util.Date defaultValue)
           
 java.io.File[] CommandParameters.getFileArray(CommandParameter parameter)
           
 java.io.File[] CommandParameters.getFileArray(CommandParameter parameter, java.io.File[] defaultValue)
           
 int CommandParameters.getInt(CommandParameter parameter)
           
 int CommandParameters.getInt(CommandParameter parameter, int defaultValue)
           
 java.lang.String CommandParameters.getString(CommandParameter parameter)
           
 java.lang.String CommandParameters.getString(CommandParameter parameter, java.lang.String defaultValue)
           
 void CommandParameters.setDate(CommandParameter parameter, java.util.Date date)
           
 void CommandParameters.setInt(CommandParameter parameter, int value)
           
 void CommandParameters.setString(CommandParameter parameter, java.lang.String value)
           
 

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

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

Methods in org.apache.maven.scm.command.branch that throw ScmException
protected abstract  ScmResult AbstractBranchCommand.executeBranch(ScmRepository repository, java.io.File workingDirectory, java.lang.String branchName)
           
 ScmResult AbstractBranchCommand.executeCommand(ScmRepository repository, java.io.File workingDirectory, CommandParameters parameters)
           
 

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

Methods in org.apache.maven.scm.command.changelog that throw ScmException
protected abstract  ChangeLogScmResult AbstractChangeLogCommand.executeChangeLogCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.util.Date startDate, java.util.Date endDate, int numDays, java.lang.String branch)
           
 ScmResult AbstractChangeLogCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 ScmResult ChangeLogCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 

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, java.lang.String message, java.lang.String tag)
           
 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 abstract  CheckOutScmResult AbstractCheckOutCommand.executeCheckOutCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tag)
           
 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, java.lang.String startRevision, java.lang.String 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.fileinfo
 

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

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

Methods in org.apache.maven.scm.command.listfiles that throw ScmException
 ScmResult AbstractListFilesCommand.executeCommand(ScmRepository repository, java.io.File workingDirectory, CommandParameters parameters)
           
protected abstract  ScmResult AbstractListFilesCommand.executeListFilesCommand(ScmRepository repository, java.io.File workingDirectory, boolean recursive)
           
 

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

Methods in org.apache.maven.scm.command.lock that throw ScmException
 ScmResult AbstractLockCommand.executeCommand(ScmRepository repository, java.io.File workingDirectory, CommandParameters parameters)
           
protected abstract  ScmResult AbstractLockCommand.executeLockCommand(ScmRepository repository, java.io.File workingDirectory, java.lang.String filename)
           
 

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, 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
 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, java.lang.String tag)
           
 

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(ScmRepository repository, java.io.File workingDirectory, CommandParameters parameters)
           
protected abstract  ScmResult AbstractUnlockCommand.executeUnlockCommand(ScmRepository 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
 ScmResult AbstractUpdateCommand.executeCommand(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
protected abstract  UpdateScmResult AbstractUpdateCommand.executeUpdateCommand(ScmProviderRepository repository, ScmFileSet fileSet, java.lang.String tag)
           
 

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

Methods in org.apache.maven.scm.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.manager
 

Subclasses of ScmException in org.apache.maven.scm.manager
 class NoSuchScmProviderException
           
 

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

Methods in org.apache.maven.scm.provider that throw ScmException
 AddScmResult AbstractScmProvider.add(ScmRepository repository, ScmFileSet fileSet)
           
 AddScmResult ScmProvider.add(ScmRepository repository, ScmFileSet fileSet)
          Adds the given files to the source control system
protected  AddScmResult AbstractScmProvider.add(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
protected  ChangeLogScmResult AbstractScmProvider.changelog(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 ChangeLogScmResult AbstractScmProvider.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)
          Returns the changes that have happend in the source control system in a certain period of time.
protected  CheckInScmResult AbstractScmProvider.checkin(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 CheckInScmResult AbstractScmProvider.checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
           
 CheckInScmResult ScmProvider.checkIn(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag, java.lang.String message)
          Save the changes you have done into the repository.
protected  CheckOutScmResult AbstractScmProvider.checkout(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 CheckOutScmResult AbstractScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
           
 CheckOutScmResult ScmProvider.checkOut(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
          Create a copy of the repository on your local machine
protected  DiffScmResult AbstractScmProvider.diff(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 DiffScmResult AbstractScmProvider.diff(ScmRepository repository, ScmFileSet fileSet, java.lang.String startRevision, java.lang.String endRevision)
           
 DiffScmResult ScmProvider.diff(ScmRepository repository, ScmFileSet fileSet, java.lang.String startRevision, java.lang.String endRevision)
           
 EditScmResult AbstractScmProvider.edit(ScmRepository repository, ScmFileSet fileSet)
           
 EditScmResult ScmProvider.edit(ScmRepository repository, ScmFileSet fileSet)
          Make a file editable.
protected  EditScmResult AbstractScmProvider.edit(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
protected  LoginScmResult AbstractScmProvider.login(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
protected  RemoveScmResult AbstractScmProvider.remove(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 RemoveScmResult AbstractScmProvider.remove(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
           
 RemoveScmResult ScmProvider.remove(ScmRepository repository, ScmFileSet fileSet, java.lang.String message)
          Removes the given files from the source control system
 StatusScmResult AbstractScmProvider.status(ScmRepository repository, ScmFileSet fileSet)
           
 StatusScmResult ScmProvider.status(ScmRepository repository, ScmFileSet fileSet)
          Returns the status of the files in the source control system.
protected  StatusScmResult AbstractScmProvider.status(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
protected  TagScmResult AbstractScmProvider.tag(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 TagScmResult AbstractScmProvider.tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
           
 TagScmResult ScmProvider.tag(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
          Tag (or label in some systems) will tag the source file with a certain tag
 UnEditScmResult AbstractScmProvider.unedit(ScmRepository repository, ScmFileSet fileSet)
           
 UnEditScmResult ScmProvider.unedit(ScmRepository repository, ScmFileSet fileSet)
          Make a file no longer editable.
protected  UnEditScmResult AbstractScmProvider.unedit(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
protected  UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, CommandParameters parameters)
           
 UpdateScmResult AbstractScmProvider.update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
           
 UpdateScmResult ScmProvider.update(ScmRepository repository, ScmFileSet fileSet, java.lang.String tag)
          Updates the copy on the local machine with the changes in the repository
 UpdateScmResult AbstractScmProvider.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)
          Updates the copy on the local machine with the changes in the repository
 



Copyright 2003-2003-2005 Apache Software Foundation. All Rights Reserved.