Class Dataset
- java.lang.Object
-
- com.priint.pubserver.plannerapi.resource.PlannerApiResource
-
- com.priint.pubserver.plannerapi.resource.Dataset
-
- All Implemented Interfaces:
java.io.Serializable
public class Dataset extends PlannerApiResource implements java.io.Serializable
Planner REST API class representing a dataset.- See Also:
PlannerApiResource, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Dataset()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetActive()Gets flag indicating if the dataset is active: 0 - not active, 1 - activejava.lang.StringgetDefaultval()Gets default valuejava.lang.StringgetDelete()Gets flag indicating if the dataset is deleted: 0 - not deleted, 1 - deletedjava.util.List<Link>getLinks()links of the Statusjava.lang.StringgetName()Gets the name of the datasetvoidsetActive(java.lang.String active)Sets flag indicating if the dataset is active: 0 - not active, 1 - activevoidsetDefaultval(java.lang.String defaultval)Sets default valuevoidsetDelete(java.lang.String delete)Sets flag indicating if the dataset is deleted: 0 - not deleted, 1 - deletedvoidsetName(java.lang.String name)Sets the name of the dataset-
Methods inherited from class com.priint.pubserver.plannerapi.resource.PlannerApiResource
getStatuscode, getStatusmessage, setStatuscode, setStatusmessage
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the name of the dataset
-
setName
public void setName(java.lang.String name)
Sets the name of the dataset
-
getActive
public java.lang.String getActive()
Gets flag indicating if the dataset is active: 0 - not active, 1 - active
-
setActive
public void setActive(java.lang.String active)
Sets flag indicating if the dataset is active: 0 - not active, 1 - active
-
getDelete
public java.lang.String getDelete()
Gets flag indicating if the dataset is deleted: 0 - not deleted, 1 - deleted
-
setDelete
public void setDelete(java.lang.String delete)
Sets flag indicating if the dataset is deleted: 0 - not deleted, 1 - deleted
-
getDefaultval
public java.lang.String getDefaultval()
Gets default value
-
setDefaultval
public void setDefaultval(java.lang.String defaultval)
Sets default value
-
getLinks
public java.util.List<Link> getLinks()
links of the Status
-
-