Class VcsLogEntry

java.lang.Object
org.apache.commons.vfs2.operations.vcs.VcsLogEntry

public class VcsLogEntry extends Object
A VFS log entry.
Since:
0.1
  • Constructor Details

    • VcsLogEntry

      public VcsLogEntry(String author, long revision, String message, Calendar date, String path)
      Constructs a new instance.
      Parameters:
      author - The author.
      revision - The revision.
      message - The message.
      date - The date.
      path - The path.
  • Method Details

    • getAuthor

      public String getAuthor()
      Gets the author.
      Returns:
      The author.
    • getDate

      public Calendar getDate()
      Gets the date.
      Returns:
      The date.
    • getMessage

      public String getMessage()
      Gets the message.
      Returns:
      The message.
    • getPath

      public String getPath()
      Gets the path.
      Returns:
      The path.
    • getRevision

      public long getRevision()
      Gets the revision.
      Returns:
      The revision.