org.apache.maven.scm.provider.cvslib
public abstract class AbstractCvsScmProvider extends AbstractScmProvider
Modifier and Type | Class and Description |
---|---|
static class |
AbstractCvsScmProvider.ScmUrlParserResult
The current ScmUrlParserResult
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
TRANSPORT_EXT
ext transport method
|
static java.lang.String |
TRANSPORT_LOCAL
local transport method
|
static java.lang.String |
TRANSPORT_LSERVER
lserver transport method
|
static java.lang.String |
TRANSPORT_PSERVER
pserver transport method
|
static java.lang.String |
TRANSPORT_SSPI
sspi transport method
|
ROLE
Constructor and Description |
---|
AbstractCvsScmProvider() |
Modifier and Type | Method and Description |
---|---|
AddScmResult |
add(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
BranchScmResult |
branch(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ChangeLogScmResult |
changelog(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckInScmResult |
checkin(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
CheckOutScmResult |
checkout(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
DiffScmResult |
diff(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected ExportScmResult |
export(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected abstract Command |
getAddCommand() |
protected abstract Command |
getBranchCommand() |
protected abstract Command |
getChangeLogCommand() |
protected abstract Command |
getCheckInCommand() |
protected abstract Command |
getCheckOutCommand() |
protected abstract Command |
getDiffCommand() |
protected abstract Command |
getExportCommand() |
protected abstract Command |
getListCommand() |
protected abstract Command |
getLoginCommand() |
static java.lang.String |
getRelativePath(java.io.File basedir,
java.io.File f) |
protected abstract Command |
getRemoveCommand() |
java.lang.String |
getScmSpecificFilename()
Returns the scm reserved file name where the SCM stores information like 'CVS', '.svn'.
|
java.lang.String |
getScmType() |
protected abstract Command |
getStatusCommand() |
protected abstract Command |
getTagCommand() |
protected abstract Command |
getUpdateCommand() |
protected ListScmResult |
list(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters)
List each element (files and directories) of fileSet as they exist in the repository.
|
LoginScmResult |
login(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
ScmProviderRepository |
makeProviderScmRepository(java.io.File path) |
ScmProviderRepository |
makeProviderScmRepository(java.lang.String scmSpecificUrl,
char delimiter) |
protected AbstractCvsScmProvider.ScmUrlParserResult |
parseScmUrl(java.lang.String scmSpecificUrl,
char delimiter) |
RemoveScmResult |
remove(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
java.lang.String |
sanitizeTagName(java.lang.String arg0)
Given a tag name, make it suitable for this SCM provider.
|
StatusScmResult |
status(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
TagScmResult |
tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
protected TagScmResult |
tag(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters,
ScmTagParameters scmParameters) |
UpdateScmResult |
update(ScmProviderRepository repository,
ScmFileSet fileSet,
CommandParameters parameters) |
java.util.List |
validateScmUrl(java.lang.String scmSpecificUrl,
char delimiter)
Validate the scm url.
|
boolean |
validateTagName(java.lang.String arg0)
Check if this tag is valid for this SCM provider.
|
add, add, addListener, branch, branch, branch, changeLog, changeLog, changeLog, changeLog, changeLog, changeLog, changeLog, changeLog, checkIn, checkIn, checkIn, checkOut, checkOut, checkOut, checkOut, checkOut, checkOut, diff, diff, edit, edit, export, export, export, export, export, getLogger, list, list, remove, requiresEditMode, status, tag, tag, tag, unedit, unedit, update, update, update, update, update, update, update, update, update, update, update, update
public static final java.lang.String TRANSPORT_EXT
public static final java.lang.String TRANSPORT_LOCAL
public static final java.lang.String TRANSPORT_LSERVER
public static final java.lang.String TRANSPORT_PSERVER
public static final java.lang.String TRANSPORT_SSPI
public java.lang.String getScmSpecificFilename()
getScmSpecificFilename
in interface ScmProvider
getScmSpecificFilename
in class AbstractScmProvider
public java.lang.String sanitizeTagName(java.lang.String arg0)
sanitizeTagName
in interface ScmProvider
sanitizeTagName
in class AbstractScmProvider
arg0
- input tag namepublic boolean validateTagName(java.lang.String arg0)
validateTagName
in interface ScmProvider
validateTagName
in class AbstractScmProvider
arg0
- tag name to checkpublic ScmProviderRepository makeProviderScmRepository(java.lang.String scmSpecificUrl, char delimiter) throws ScmRepositoryException
ScmRepositoryException
public ScmProviderRepository makeProviderScmRepository(java.io.File path) throws ScmRepositoryException, UnknownRepositoryStructure
makeProviderScmRepository
in interface ScmProvider
makeProviderScmRepository
in class AbstractScmProvider
ScmRepositoryException
UnknownRepositoryStructure
public java.util.List validateScmUrl(java.lang.String scmSpecificUrl, char delimiter)
validateScmUrl
in interface ScmProvider
validateScmUrl
in class AbstractScmProvider
scmSpecificUrl
- The SCM urldelimiter
- The delimiter used in the SCM urlpublic java.lang.String getScmType()
public AddScmResult add(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
add
in class AbstractScmProvider
ScmException
public BranchScmResult branch(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
branch
in class AbstractScmProvider
ScmException
public ChangeLogScmResult changelog(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
changelog
in class AbstractScmProvider
ScmException
public CheckInScmResult checkin(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
checkin
in class AbstractScmProvider
ScmException
public CheckOutScmResult checkout(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
checkout
in class AbstractScmProvider
ScmException
public DiffScmResult diff(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
diff
in class AbstractScmProvider
ScmException
protected ExportScmResult export(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
export
in class AbstractScmProvider
ScmException
public LoginScmResult login(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
login
in class AbstractScmProvider
ScmException
public RemoveScmResult remove(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
remove
in class AbstractScmProvider
ScmException
public StatusScmResult status(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
status
in class AbstractScmProvider
ScmException
public TagScmResult tag(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
tag
in class AbstractScmProvider
ScmException
protected TagScmResult tag(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters, ScmTagParameters scmParameters) throws ScmException
ScmException
public UpdateScmResult update(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
update
in class AbstractScmProvider
ScmException
protected ListScmResult list(ScmProviderRepository repository, ScmFileSet fileSet, CommandParameters parameters) throws ScmException
list
in class AbstractScmProvider
repository
- the source control systemfileSet
- the files to listNoSuchCommandScmException
- unless overriden by subclassScmException
- if anypublic static java.lang.String getRelativePath(java.io.File basedir, java.io.File f) throws ScmException, java.io.IOException
basedir
- not nullf
- not nullScmException
- if anyjava.io.IOException
- if anyprotected AbstractCvsScmProvider.ScmUrlParserResult parseScmUrl(java.lang.String scmSpecificUrl, char delimiter)
protected abstract Command getAddCommand()
protected abstract Command getBranchCommand()
protected abstract Command getChangeLogCommand()
protected abstract Command getCheckInCommand()
protected abstract Command getCheckOutCommand()
protected abstract Command getDiffCommand()
protected abstract Command getExportCommand()
protected abstract Command getListCommand()
protected abstract Command getLoginCommand()
protected abstract Command getRemoveCommand()
protected abstract Command getStatusCommand()
protected abstract Command getTagCommand()
protected abstract Command getUpdateCommand()
Copyright © 2003-2014. All Rights Reserved.