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