Package dw.xmlrpc
Class MediaChange
- java.lang.Object
-
- dw.xmlrpc.MediaChange
-
public class MediaChange extends java.lang.Object
Describes a revision of a media
-
-
Constructor Summary
Constructors Constructor Description MediaChange(java.lang.String id, java.util.Date lastModified, java.lang.String author, java.lang.Integer version, java.lang.Integer perms, java.lang.Integer size)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
author()
Author of this modification of the mediajava.lang.String
id()
Id of the media (namespace + name)java.util.Date
lastModified()
Date of this modification of the mediajava.lang.Integer
perms()
Permissions of the filejava.lang.Integer
size()
Size of the file in bytesjava.lang.String
toString()
java.lang.Integer
version()
Version of the revision as a timestamp.
-
-
-
Method Detail
-
id
public java.lang.String id()
Id of the media (namespace + name)
-
lastModified
public java.util.Date lastModified()
Date of this modification of the media
-
author
public java.lang.String author()
Author of this modification of the media
-
version
public java.lang.Integer version()
Version of the revision as a timestamp. Should correspond tolastModified()
-
perms
public java.lang.Integer perms()
Permissions of the file
-
size
public java.lang.Integer size()
Size of the file in bytes
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-