Package dw.xmlrpc

Class PageChange


  • public class PageChange
    extends java.lang.Object
    Describe a page change, as returned by the getRecentChanges xmlrpc method
    • Constructor Summary

      Constructors 
      Constructor Description
      PageChange​(java.lang.String pageId, java.lang.Integer perms, java.util.Date lastModified, java.lang.Integer size, 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 the page
      java.util.Date lastModified()
      Date of the modification
      java.lang.String name()
      Alias for pageId() This alias is provided because it is the way it is called by the xmlrpc method
      java.lang.String pageId()
      Id of the page changed
      java.lang.Integer perms()
      Integer representing the permissions on the file
      java.lang.Integer size()  
      java.lang.String toString()  
      java.lang.Integer version()
      Version of the page
      • Methods inherited from class java.lang.Object

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

      • PageChange

        public PageChange​(java.lang.String pageId,
                          java.lang.Integer perms,
                          java.util.Date lastModified,
                          java.lang.Integer size,
                          java.lang.String author,
                          java.lang.Integer version)
    • Method Detail

      • pageId

        public java.lang.String pageId()
        Id of the page changed
      • name

        public java.lang.String name()
        Alias for pageId() This alias is provided because it is the way it is called by the xmlrpc method
      • perms

        public java.lang.Integer perms()
        Integer representing the permissions on the file
      • lastModified

        public java.util.Date lastModified()
        Date of the modification
      • size

        public java.lang.Integer size()
      • author

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

        public java.lang.Integer version()
        Version of the page
      • toString

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