Package org.tmatesoft.svn.core.io
Class SVNCapability
- java.lang.Object
-
- org.tmatesoft.svn.core.io.SVNCapability
-
public class SVNCapability extends java.lang.Object
This class contains enumeration that describes the repository capabilities or, in other words, features that the repository may be capable of.- Since:
- 1.2
- Version:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description static SVNCapability
ATOMIC_REVPROPS
Represents the capability of specifying (and atomically verifying) expected preexisting values when modifying revprops.static SVNCapability
COMMIT_REVPROPS
Represents the capability of committing revision properties modifications along with a normal transaction.static SVNCapability
DEPTH
Represents the capability of the repository to understand what the client means when the client describes the depth of a working copy to the server.static SVNCapability
EPHEMERAL_PROPS
static SVNCapability
INHERITED_PROPS
static SVNCapability
LOG_REVPROPS
Represents the capability of retrieving arbitrary revision properties.static SVNCapability
MERGE_INFO
Represents the capability of the repository to support merge-tracking information.private java.lang.String
myName
static SVNCapability
PARTIAL_REPLAY
Represents the capability of replaying a directory in the repository (partial replay).
-
Constructor Summary
Constructors Modifier Constructor Description private
SVNCapability(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Returns a string representation of this object.
-
-
-
Field Detail
-
DEPTH
public static final SVNCapability DEPTH
Represents the capability of the repository to understand what the client means when the client describes the depth of a working copy to the server.
-
MERGE_INFO
public static final SVNCapability MERGE_INFO
Represents the capability of the repository to support merge-tracking information.
-
LOG_REVPROPS
public static final SVNCapability LOG_REVPROPS
Represents the capability of retrieving arbitrary revision properties.
-
PARTIAL_REPLAY
public static final SVNCapability PARTIAL_REPLAY
Represents the capability of replaying a directory in the repository (partial replay).
-
COMMIT_REVPROPS
public static final SVNCapability COMMIT_REVPROPS
Represents the capability of committing revision properties modifications along with a normal transaction.
-
ATOMIC_REVPROPS
public static final SVNCapability ATOMIC_REVPROPS
Represents the capability of specifying (and atomically verifying) expected preexisting values when modifying revprops.
-
INHERITED_PROPS
public static final SVNCapability INHERITED_PROPS
-
EPHEMERAL_PROPS
public static final SVNCapability EPHEMERAL_PROPS
-
myName
private java.lang.String myName
-
-