Package com.axemble.vdoc.sdk.interfaces
Interface IVirtualPage
- All Superinterfaces:
IProtocolSupport
,Serializable
- All Known Implementing Classes:
EzsVirtualPage
This interface represents a virtual page.
- Since:
- 2.1
- Version:
- 1.0, 30/12/2009
- Author:
- vlygeros
-
Method Summary
Modifier and TypeMethodDescriptionGets the activated date.Gets the author information.Gets the created date.Gets the description of the container.Gets the digest of the page container.Gets the expired date.getLabel()
Gets the modified date.Retrieves the provided Plug-in request.void
setActivatedDate
(Date activatedDate) Sets the activated date.void
setAuthorInformation
(String authorInformation) Sets the author information.void
setDescription
(String description) Sets the description of the container.void
Sets the digest of the page container.void
setExpiredDate
(Date expiredDate) Sets the expired date.void
Sets the label of the container.Methods inherited from interface com.axemble.vdoc.sdk.supports.IProtocolSupport
getProtocolURI, getProtocolURI
-
Method Details
-
getLabel
String getLabel()- Returns:
- The label of the container.
-
setLabel
Sets the label of the container.- Parameters:
label
- the new label to set.
-
getDescription
String getDescription()Gets the description of the container.- Returns:
- a String of the container.
-
setDescription
Sets the description of the container.- Parameters:
description
- the new description to set.
-
getDigest
String getDigest()Gets the digest of the page container.- Returns:
- A java.lang.String value.
-
setDigest
Sets the digest of the page container.- Parameters:
digest
- The digest of the page container to set.
-
getCreatedDate
Date getCreatedDate()Gets the created date.- Returns:
- A
Date
object.
-
getModifiedDate
Date getModifiedDate()Gets the modified date.- Returns:
- A
Date
object.
-
getActivatedDate
Date getActivatedDate()Gets the activated date.- Returns:
- A
Date
object.
-
setActivatedDate
Sets the activated date.- Parameters:
activatedDate
- the activated date
-
getExpiredDate
Date getExpiredDate()Gets the expired date.- Returns:
- A
Date
object.
-
setExpiredDate
Sets the expired date.- Parameters:
expiredDate
- the expired date
-
getAuthorInformation
String getAuthorInformation()Gets the author information.- Returns:
- A java.lang.String object.
-
setAuthorInformation
Sets the author information.- Parameters:
authorInformation
- The author information.
-
getPluginRequest
IPluginRequest getPluginRequest()Retrieves the provided Plug-in request.- Returns:
- A
IPluginRequest
object.
-