Class VcsLogEntry
- java.lang.Object
-
- org.apache.commons.vfs2.operations.vcs.VcsLogEntry
-
public class VcsLogEntry extends java.lang.Object
- Since:
- 0.1
-
-
Constructor Summary
Constructors Constructor Description VcsLogEntry(java.lang.String author, long revision, java.lang.String message, java.util.Calendar date, java.lang.String path)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAuthor()
java.util.Calendar
getDate()
java.lang.String
getMessage()
java.lang.String
getPath()
long
getRevision()
-
-
-
Constructor Detail
-
VcsLogEntry
public VcsLogEntry(java.lang.String author, long revision, java.lang.String message, java.util.Calendar date, java.lang.String path)
- Parameters:
author
- The author.revision
- The revision.message
- The message.date
- The date.path
- The path.
-
-
Method Detail
-
getAuthor
public java.lang.String getAuthor()
- Returns:
- The author.
-
getRevision
public long getRevision()
- Returns:
- The revision.
-
getMessage
public java.lang.String getMessage()
- Returns:
- The message.
-
getDate
public java.util.Calendar getDate()
- Returns:
- The date.
-
getPath
public java.lang.String getPath()
- Returns:
- The path.
-
-