Class VcsLogEntry
- java.lang.Object
-
- org.apache.commons.vfs2.operations.vcs.VcsLogEntry
-
public class VcsLogEntry extends java.lang.Object
A VFS log entry.- 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)Constructs a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAuthor()Gets the author.java.util.CalendargetDate()Gets the date.java.lang.StringgetMessage()Gets the message.java.lang.StringgetPath()Gets the path.longgetRevision()Gets the revision.
-
-
-
Constructor Detail
-
VcsLogEntry
public VcsLogEntry(java.lang.String author, long revision, java.lang.String message, java.util.Calendar date, java.lang.String path)
Constructs a new instance.- Parameters:
author- The author.revision- The revision.message- The message.date- The date.path- The path.
-
-
Method Detail
-
getAuthor
public java.lang.String getAuthor()
Gets the author.- Returns:
- The author.
-
getDate
public java.util.Calendar getDate()
Gets the date.- Returns:
- The date.
-
getMessage
public java.lang.String getMessage()
Gets the message.- Returns:
- The message.
-
getPath
public java.lang.String getPath()
Gets the path.- Returns:
- The path.
-
getRevision
public long getRevision()
Gets the revision.- Returns:
- The revision.
-
-