Package org.tigris.subversion.javahl
Class LogMessage
java.lang.Object
org.tigris.subversion.javahl.LogMessage
- All Implemented Interfaces:
Serializable
public class LogMessage extends Object implements Serializable
This class describes a single subversion revision with log message,
author and date.
- See Also:
- Serialized Form
-
Method Summary
Modifier and Type Method Description String
getAuthor()
Returns the author of the commitChangePath[]
getChangedPaths()
Returns the changes items by this commitDate
getDate()
Returns the date of the commitString
getMessage()
Return the log message textRevision.Number
getRevision()
Returns the revision as a Revision objectlong
getRevisionNumber()
Returns the revision as a long integerlong
getTimeMicros()
Returns the time of the commitlong
getTimeMillis()
Returns the time of the commit
-
Method Details
-
getMessage
Return the log message text- Returns:
- the log message text
-
getTimeMicros
public long getTimeMicros()Returns the time of the commit- Returns:
- the time of the commit measured in the number of microseconds since 00:00:00 January 1, 1970 UTC
- Since:
- 1.5
-
getTimeMillis
public long getTimeMillis()Returns the time of the commit- Returns:
- the time of the commit measured in the number of milliseconds since 00:00:00 January 1, 1970 UTC
- Since:
- 1.5
-
getDate
Returns the date of the commit- Returns:
- the date of the commit
-
getRevision
Returns the revision as a Revision object- Returns:
- the revision number as a Revision object
-
getRevisionNumber
public long getRevisionNumber()Returns the revision as a long integer- Returns:
- the revision number as a long integer
-
getAuthor
Returns the author of the commit- Returns:
- the author of the commit
-
getChangedPaths
Returns the changes items by this commit- Returns:
- the changes items by this commit
-