Package dw.xmlrpc
Class PageChange
- java.lang.Object
-
- dw.xmlrpc.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 pagejava.util.Date
lastModified()
Date of the modificationjava.lang.String
name()
Alias forpageId()
This alias is provided because it is the way it is called by the xmlrpc methodjava.lang.String
pageId()
Id of the page changedjava.lang.Integer
perms()
Integer representing the permissions on the filejava.lang.Integer
size()
java.lang.String
toString()
java.lang.Integer
version()
Version of the page
-
-
-
Method Detail
-
pageId
public java.lang.String pageId()
Id of the page changed
-
name
public java.lang.String name()
Alias forpageId()
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 classjava.lang.Object
-
-