Class Preference
- java.lang.Object
-
- com.priint.pubserver.plannerapi.resource.PlannerApiResource
-
- com.priint.pubserver.plannerapi.resource.Preference
-
- All Implemented Interfaces:
java.io.Serializable
public class Preference extends PlannerApiResource implements java.io.Serializable
Class representing a Preference in Planner REST Service.- See Also:
PlannerApiResource, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Preference()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()description of the Preferencejava.util.List<Link>getLinks()links of the Preferencejava.lang.StringgetName()name of the Preferencejava.lang.StringgetType()type of the PreferenceListOfValuesgetValue()value of the PreferencevoidsetDescription(java.lang.String description)voidsetName(java.lang.String name)voidsetType(java.lang.String type)voidsetValue(ListOfValues value)-
Methods inherited from class com.priint.pubserver.plannerapi.resource.PlannerApiResource
getStatuscode, getStatusmessage, setStatuscode, setStatusmessage
-
-
-
-
Method Detail
-
getType
public java.lang.String getType()
type of the Preference
-
setType
public void setType(java.lang.String type)
-
getName
public java.lang.String getName()
name of the Preference
-
setName
public void setName(java.lang.String name)
-
getValue
public ListOfValues getValue()
value of the Preference
-
setValue
public void setValue(ListOfValues value)
-
getDescription
public java.lang.String getDescription()
description of the Preference
-
setDescription
public void setDescription(java.lang.String description)
-
getLinks
public java.util.List<Link> getLinks()
links of the Preference
-
-