Package org.apache.subversion.javahl
Class CommitInfo
java.lang.Object
org.apache.subversion.javahl.CommitInfo
- All Implemented Interfaces:
Serializable
This class describes a item which will be committed.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) String
the author of the revision(package private) Date
the date of the revision(package private) String
post commit error (or NULL)(package private) String
repos root (or NULL)(package private) long
the revision committedprivate static final long
-
Constructor Summary
ConstructorsConstructorDescriptionCommitInfo
(long rev, String d, String a, String pce, String rr) This constructor will be only called from the jni code. -
Method Summary
Modifier and TypeMethodDescriptionreturn the author of the commitgetDate()
return the date of the commitreturn any post commit error for the commitreturn the repos rootlong
retrieve the revision of the commit
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
revision
long revisionthe revision committed -
date
Date datethe date of the revision -
author
String authorthe author of the revision -
postCommitError
String postCommitErrorpost commit error (or NULL) -
reposRoot
String reposRootrepos root (or NULL)
-
-
Constructor Details
-
CommitInfo
This constructor will be only called from the jni code.- Throws:
ParseException
-
-
Method Details
-
getRevision
public long getRevision()retrieve the revision of the commit -
getDate
return the date of the commit -
getAuthor
return the author of the commit -
getPostCommitError
return any post commit error for the commit -
getReposRoot
return the repos root
-