Class ParamDropDownList
- java.lang.Object
-
- com.priint.pubserver.plannerapi.resource.PlannerApiResource
-
- com.priint.pubserver.plannerapi.resource.ParamDropDownList
-
- All Implemented Interfaces:
java.io.Serializable
public class ParamDropDownList extends PlannerApiResource implements java.io.Serializable
Class representing a dropdown list in Planner REST Service.- See Also:
PlannerApiResource, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParamDropDownList()ParamDropDownList(java.lang.Integer id, java.lang.String name, java.lang.String helptext, java.lang.String createdby, java.util.Date createdon, java.lang.String updatedby, java.util.Date updatedon)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCreatedby()user who created the ParamDropDownListjava.util.DategetCreatedon()date of creation of the ParamDropDownListjava.lang.StringgetHelptext()helptext of the dropdown listjava.lang.IntegergetId()dropdown list IDjava.util.List<Link>getLinks()links of the ParamDropDownListjava.lang.StringgetName()dropdown list namejava.lang.StringgetUpdatedby()last person who updated the ParamDropDownListjava.util.DategetUpdatedon()date of last update of the ParamDropDownListvoidsetCreatedby(java.lang.String createdby)voidsetCreatedon(java.util.Date createdon)voidsetHelptext(java.lang.String helptext)voidsetId(java.lang.Integer id)voidsetLinks(java.util.List<Link> links)voidsetName(java.lang.String name)voidsetUpdatedby(java.lang.String updatedby)voidsetUpdatedon(java.util.Date updatedon)-
Methods inherited from class com.priint.pubserver.plannerapi.resource.PlannerApiResource
getStatuscode, getStatusmessage, setStatuscode, setStatusmessage
-
-
-
-
Method Detail
-
getId
public java.lang.Integer getId()
dropdown list ID
-
setId
public void setId(java.lang.Integer id)
-
getName
public java.lang.String getName()
dropdown list name
-
setName
public void setName(java.lang.String name)
-
getHelptext
public java.lang.String getHelptext()
helptext of the dropdown list
-
setHelptext
public void setHelptext(java.lang.String helptext)
-
getCreatedby
public java.lang.String getCreatedby()
user who created the ParamDropDownList
-
setCreatedby
public void setCreatedby(java.lang.String createdby)
-
getCreatedon
public java.util.Date getCreatedon()
date of creation of the ParamDropDownList
-
setCreatedon
public void setCreatedon(java.util.Date createdon)
-
getUpdatedby
public java.lang.String getUpdatedby()
last person who updated the ParamDropDownList
-
setUpdatedby
public void setUpdatedby(java.lang.String updatedby)
-
getUpdatedon
public java.util.Date getUpdatedon()
date of last update of the ParamDropDownList
-
setUpdatedon
public void setUpdatedon(java.util.Date updatedon)
-
getLinks
public java.util.List<Link> getLinks()
links of the ParamDropDownList
-
setLinks
public void setLinks(java.util.List<Link> links)
-
-