org.apache.subversion.javahl.callback
Class RemoteStatus.Entry

java.lang.Object
  extended by org.apache.subversion.javahl.callback.RemoteStatus.Entry
All Implemented Interfaces:
Serializable, Comparable<RemoteStatus.Entry>
Enclosing interface:
RemoteStatus

public static class RemoteStatus.Entry
extends Object
implements Comparable<RemoteStatus.Entry>, Serializable

Contains additional information related to a modification or deletion event.

See Also:
Serialized Form

Constructor Summary
RemoteStatus.Entry(String uuid, String author, long revision, long timestamp)
           
 
Method Summary
 int compareTo(RemoteStatus.Entry that)
          Implementation of interface Comparable.
 boolean equals(Object entry)
           
 long getCommittedRevision()
           
 long getCommittedTimestamp()
           
 String getLastAuthor()
           
 String getUuid()
           
 int hashCode()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RemoteStatus.Entry

public RemoteStatus.Entry(String uuid,
                          String author,
                          long revision,
                          long timestamp)
Method Detail

getUuid

public String getUuid()
Returns:
The UUID of the repository that the node belongs to.

getLastAuthor

public String getLastAuthor()
Returns:
The author (committer) of the change.

getCommittedRevision

public long getCommittedRevision()
Returns:
The revision number in with the change was committed.

getCommittedTimestamp

public long getCommittedTimestamp()
Returns:
The timestamp, in milliseconds from the epoch, of the committed revision.

compareTo

public int compareTo(RemoteStatus.Entry that)
Implementation of interface Comparable.

Specified by:
compareTo in interface Comparable<RemoteStatus.Entry>

equals

public boolean equals(Object entry)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object