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.SerializableThis class describes a item which will be committed.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.Stringauthorthe author of the revision(package private) java.util.Datedatethe date of the revision(package private) java.lang.StringpostCommitErrorpost commit error (or NULL)(package private) java.lang.StringreposRootrepos root (or NULL)(package private) longrevisionthe revision committedprivate static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description CommitInfo(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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAuthor()return the author of the commitjava.util.DategetDate()return the date of the commitjava.lang.StringgetPostCommitError()return any post commit error for the commitjava.lang.StringgetReposRoot()return the repos rootlonggetRevision()retrieve the revision of the commit
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
revision
long revision
the revision committed
-
date
java.util.Date date
the date of the revision
-
author
java.lang.String author
the author of the revision
-
postCommitError
java.lang.String postCommitError
post commit error (or NULL)
-
reposRoot
java.lang.String reposRoot
repos root (or NULL)
-
-
Method Detail
-
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
-
-