|
SVNKit Home | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The ISVNCommitParameters is the interface for parameters which set behaviour for a commit operation that touches still versioned files or dirs that are somehow missing.
To bring your commit parameters into usage, simply pass them to
a committer object, for example, to
SVNCommitClient
.
DefaultSVNCommitParameters
Nested Class Summary | |
static class |
ISVNCommitParameters.Action
This class is simply used to define an action a commit operation should undertake in case of a missing file/directory. |
Field Summary | |
static ISVNCommitParameters.Action |
DELETE
A constant that instructs a commit operation to force a deletion of a missing item. |
static ISVNCommitParameters.Action |
ERROR
A constant that defines a file/dir missing situation as an error, commit should fail. |
static ISVNCommitParameters.Action |
SKIP
A constant that instructs a commit operation to skip a missing item. |
Method Summary | |
boolean |
onDirectoryDeletion(File directory)
|
boolean |
onFileDeletion(File file)
|
ISVNCommitParameters.Action |
onMissingDirectory(File file)
Returns the action a commit operation should undertake if there's a missing directory under commit scope that is not however scheduled for deletion. |
ISVNCommitParameters.Action |
onMissingFile(File file)
Returns the action a commit operation should undertake if there's a missing file under commit scope that is not however scheduled for deletion. |
Field Detail |
public static final ISVNCommitParameters.Action ERROR
public static final ISVNCommitParameters.Action SKIP
public static final ISVNCommitParameters.Action DELETE
Method Detail |
public ISVNCommitParameters.Action onMissingFile(File file)
file
- a missing file
public ISVNCommitParameters.Action onMissingDirectory(File file)
file
- a missing directory
public boolean onDirectoryDeletion(File directory)
public boolean onFileDeletion(File file)
|
SVNKit Home | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |