org.tmatesoft.svn.core

Class SVNRevisionProperty

public class SVNRevisionProperty extends Object

The SVNRevisionProperty class represents revision properties - those unversioned properties supported by Subversion.

Revision properties are unversioned, so there is always a risk to lose information when modifying revision property values.

Version: 1.1.1

Author: TMate Software Ltd.

Field Summary
static StringAUTHOR
An "svn:author" revision property (that holds the name of the revision's author).
static StringAUTOVERSIONED
static StringCURRENTLY_COPYING
"svn:sync-currently-copying" revision property.
static StringDATE
An "svn:date" revision property that is a date & time stamp representing the time when the revision was created.
static StringFROM_URL
"svn:sync-from-url" revision property.
static StringFROM_UUID
"svn:sync-from-uuid" revision property.
static StringLAST_MERGED_REVISION
"svn:sync-last-merged-rev" revision property.
static StringLOCK
"svn:sync-lock" revision property.
static StringLOG
An "svn:log" revision property - the one that stores a log message attached to a revision during a commit operation.
static StringORIGINAL_DATE
Method Summary
static booleanisRevisionProperty(String name)
Says if the given revision property name is really a valid revision property name.

Field Detail

AUTHOR

public static final String AUTHOR
An "svn:author" revision property (that holds the name of the revision's author).

AUTOVERSIONED

public static final String AUTOVERSIONED

CURRENTLY_COPYING

public static final String CURRENTLY_COPYING
"svn:sync-currently-copying" revision property.

Since: 1.1, new in Subversion 1.4

DATE

public static final String DATE
An "svn:date" revision property that is a date & time stamp representing the time when the revision was created.

FROM_URL

public static final String FROM_URL
"svn:sync-from-url" revision property.

Since: 1.1, new in Subversion 1.4

FROM_UUID

public static final String FROM_UUID
"svn:sync-from-uuid" revision property.

Since: 1.1, new in Subversion 1.4

LAST_MERGED_REVISION

public static final String LAST_MERGED_REVISION
"svn:sync-last-merged-rev" revision property.

Since: 1.1, new in Subversion 1.4

LOCK

public static final String LOCK
"svn:sync-lock" revision property.

Since: 1.1, new in Subversion 1.4

LOG

public static final String LOG
An "svn:log" revision property - the one that stores a log message attached to a revision during a commit operation.

ORIGINAL_DATE

public static final String ORIGINAL_DATE

Method Detail

isRevisionProperty

public static boolean isRevisionProperty(String name)
Says if the given revision property name is really a valid revision property name.

Parameters: name a property name

Returns: true if it's a revision property name, false otherwise

Copyright © 2004-2007 TMate Software Ltd. All Rights Reserved.