Package dw.xmlrpc

Class PageInfo


  • public class PageInfo
    extends java.lang.Object
    Information about a wiki page
    • Constructor Summary

      Constructors 
      Constructor Description
      PageInfo​(java.lang.String id, java.util.Date modified, java.lang.String author, java.lang.Integer version)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String author()
      Author of this version
      java.lang.String id()
      Id of the page (namespace + name)
      java.util.Date modified()
      Date of the modification of this version
      java.lang.String toString()  
      java.lang.Integer version()
      Version as a timestamp Should correspond to modified()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • PageInfo

        public PageInfo​(java.lang.String id,
                        java.util.Date modified,
                        java.lang.String author,
                        java.lang.Integer version)
    • Method Detail

      • id

        public java.lang.String id()
        Id of the page (namespace + name)
      • modified

        public java.util.Date modified()
        Date of the modification of this version
      • author

        public java.lang.String author()
        Author of this version
      • version

        public java.lang.Integer version()
        Version as a timestamp Should correspond to modified()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object