Class CheckedoutDocumentPK
- java.lang.Object
-
- com.priint.pubserver.plannerapi.resource.PlannerApiResource
-
- com.priint.pubserver.plannerapi.resource.CheckedoutDocumentPK
-
- All Implemented Interfaces:
java.io.Serializable
public class CheckedoutDocumentPK extends PlannerApiResource implements java.io.Serializable
Planner REST API class representing a key for the checkedout document. The key contains document id and the dataset. Used inside the com.priint.pubserver.plannerapi.resource.CheckedoutDocument- See Also:
CheckedoutDocument,PlannerApiResource, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CheckedoutDocumentPK()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDataset()Gets the name of the datasetjava.lang.StringgetId()Gets ID of the documentvoidsetDataset(java.lang.String dataset)Sets the name of the datasetvoidsetId(java.lang.String id)Sets ID of the document-
Methods inherited from class com.priint.pubserver.plannerapi.resource.PlannerApiResource
getStatuscode, getStatusmessage, setStatuscode, setStatusmessage
-
-
-
-
Method Detail
-
getId
public java.lang.String getId()
Gets ID of the document
-
setId
public void setId(java.lang.String id)
Sets ID of the document
-
getDataset
public java.lang.String getDataset()
Gets the name of the dataset
-
setDataset
public void setDataset(java.lang.String dataset)
Sets the name of the dataset
-
-