|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ScmRepository in org.apache.maven.scm.command.branch |
Methods in org.apache.maven.scm.command.branch with parameters of type ScmRepository | |
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 ScmRepository in org.apache.maven.scm.command.fileinfo |
Methods in org.apache.maven.scm.command.fileinfo with parameters of type ScmRepository | |
protected abstract ScmResult |
AbstractFileInfoCommand.executeFileInfoCommand(ScmRepository repository,
java.io.File workingDirectory,
java.lang.String filename)
|
ScmResult |
AbstractFileInfoCommand.executeCommand(ScmRepository repository,
java.io.File workingDirectory,
CommandParameters parameters)
|
Uses of ScmRepository in org.apache.maven.scm.command.listfiles |
Methods in org.apache.maven.scm.command.listfiles with parameters of type ScmRepository | |
protected abstract ScmResult |
AbstractListFilesCommand.executeListFilesCommand(ScmRepository repository,
java.io.File workingDirectory,
boolean recursive)
|
ScmResult |
AbstractListFilesCommand.executeCommand(ScmRepository repository,
java.io.File workingDirectory,
CommandParameters parameters)
|
Uses of ScmRepository in org.apache.maven.scm.command.lock |
Methods in org.apache.maven.scm.command.lock with parameters of type ScmRepository | |
protected abstract ScmResult |
AbstractLockCommand.executeLockCommand(ScmRepository repository,
java.io.File workingDirectory,
java.lang.String filename)
|
ScmResult |
AbstractLockCommand.executeCommand(ScmRepository repository,
java.io.File workingDirectory,
CommandParameters parameters)
|
Uses of ScmRepository in org.apache.maven.scm.command.unlock |
Methods in org.apache.maven.scm.command.unlock with parameters of type ScmRepository | |
protected abstract ScmResult |
AbstractUnlockCommand.executeUnlockCommand(ScmRepository repository,
java.io.File workingDirectory)
|
ScmResult |
AbstractUnlockCommand.executeCommand(ScmRepository repository,
java.io.File workingDirectory,
CommandParameters parameters)
|
Uses of ScmRepository in org.apache.maven.scm.manager |
Methods in org.apache.maven.scm.manager that return ScmRepository | |
ScmRepository |
ScmManager.makeScmRepository(java.lang.String scmUrl)
|
ScmRepository |
ScmManager.makeProviderScmRepository(java.lang.String providerType,
java.io.File path)
|
ScmRepository |
AbstractScmManager.makeScmRepository(java.lang.String scmUrl)
|
ScmRepository |
AbstractScmManager.makeProviderScmRepository(java.lang.String providerType,
java.io.File path)
|
Methods in org.apache.maven.scm.manager with parameters of type ScmRepository | |
ScmProvider |
ScmManager.getProviderByRepository(ScmRepository repository)
|
ScmProvider |
AbstractScmManager.getProviderByRepository(ScmRepository repository)
|
Uses of ScmRepository in org.apache.maven.scm.provider |
Methods in org.apache.maven.scm.provider with parameters of type ScmRepository | |
AddScmResult |
ScmProvider.add(ScmRepository repository,
ScmFileSet fileSet)
Adds the given files to the source control system |
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. |
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)
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)
Returns the changes that have happend in the source control system between two tags. |
ChangeLogScmResult |
ScmProvider.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. |
CheckInScmResult |
ScmProvider.checkIn(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String tag,
java.lang.String message)
Save the changes you have done into the repository. |
CheckOutScmResult |
ScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String tag)
Create a copy of the repository on your local machine |
DiffScmResult |
ScmProvider.diff(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String startRevision,
java.lang.String endRevision)
|
RemoveScmResult |
ScmProvider.remove(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String message)
Removes the given files from the source control system |
StatusScmResult |
ScmProvider.status(ScmRepository repository,
ScmFileSet fileSet)
Returns the status of the files in the source control system. |
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 |
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 |
ScmProvider.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 repository |
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 |
UpdateScmResult |
ScmProvider.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 repository |
EditScmResult |
ScmProvider.edit(ScmRepository repository,
ScmFileSet fileSet)
Make a file editable. |
UnEditScmResult |
ScmProvider.unedit(ScmRepository repository,
ScmFileSet fileSet)
Make a file no longer editable. |
AddScmResult |
AbstractScmProvider.add(ScmRepository repository,
ScmFileSet fileSet)
|
protected AddScmResult |
AbstractScmProvider.add(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 |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
java.util.Date startDate,
java.util.Date endDate,
int numDays,
java.lang.String branch,
java.lang.String datePattern)
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String startTag,
java.lang.String endTag)
|
ChangeLogScmResult |
AbstractScmProvider.changeLog(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String startTag,
java.lang.String endTag,
java.lang.String datePattern)
|
protected ChangeLogScmResult |
AbstractScmProvider.changelog(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
CheckInScmResult |
AbstractScmProvider.checkIn(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String tag,
java.lang.String message)
|
protected CheckInScmResult |
AbstractScmProvider.checkin(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
CheckOutScmResult |
AbstractScmProvider.checkOut(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String tag)
|
protected CheckOutScmResult |
AbstractScmProvider.checkout(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
DiffScmResult |
AbstractScmProvider.diff(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String startRevision,
java.lang.String endRevision)
|
protected DiffScmResult |
AbstractScmProvider.diff(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
protected LoginScmResult |
AbstractScmProvider.login(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
RemoveScmResult |
AbstractScmProvider.remove(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String message)
|
protected RemoveScmResult |
AbstractScmProvider.remove(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
StatusScmResult |
AbstractScmProvider.status(ScmRepository repository,
ScmFileSet fileSet)
|
protected StatusScmResult |
AbstractScmProvider.status(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
TagScmResult |
AbstractScmProvider.tag(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String tag)
|
protected TagScmResult |
AbstractScmProvider.tag(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String tag)
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String tag,
java.lang.String datePattern)
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String tag,
java.util.Date lastUpdate)
|
UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
java.lang.String tag,
java.util.Date lastUpdate,
java.lang.String datePattern)
|
protected UpdateScmResult |
AbstractScmProvider.update(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
EditScmResult |
AbstractScmProvider.edit(ScmRepository repository,
ScmFileSet fileSet)
|
protected EditScmResult |
AbstractScmProvider.edit(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
UnEditScmResult |
AbstractScmProvider.unedit(ScmRepository repository,
ScmFileSet fileSet)
|
protected UnEditScmResult |
AbstractScmProvider.unedit(ScmRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |