Package es.caib.bpm.vo
Class ConfigParameterVO
- java.lang.Object
-
- es.caib.bpm.vo.ConfigParameterVO
-
- All Implemented Interfaces:
Serializable
public class ConfigParameterVO extends Object implements Serializable
ValueObject ConfigParameterVO- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigParameterVO()ConfigParameterVO(ConfigParameterVO otherBean)ConfigParameterVO(Long id, String app, String key, String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApp()Gets value for attribute appLonggetId()Gets value for attribute idStringgetKey()Gets value for attribute keyStringgetValue()Gets value for attribute valuevoidsetApp(String app)Sets value for attribute appvoidsetId(Long id)Sets value for attribute idvoidsetKey(String key)Sets value for attribute keyvoidsetValue(String value)Sets value for attribute valuestatic ConfigParameterVOtoConfigParameterVO(ConfigParameterVO vo)Creates a ConfigParameterVO value object based on a ConfigParameterVO object.static voidtoConfigParameterVO(ConfigParameterVO source, ConfigParameterVO target)Updates a ConfigParameterVO value object based on a ConfigParameterVO object.static ConfigParameterVO[]toConfigParameterVOArray(ConfigParameterVO[] source)Creates a ConfigParameterVO array on a ConfigParameterVO array.static AsyncList<ConfigParameterVO>toConfigParameterVOAsyncList(AsyncList<ConfigParameterVO> source)Creates a ConfigParameterVO asynclist on a ConfigParameterVO collection.static PagedResult<ConfigParameterVO>toConfigParameterVOList(PagedResult<ConfigParameterVO> source)Creates a ConfigParameterVO pagedResult on a ConfigParameterVO collection.static List<ConfigParameterVO>toConfigParameterVOList(Collection<ConfigParameterVO> source)Creates a ConfigParameterVO list on a ConfigParameterVO collection.StringtoString()Returns a string representation of the value object.
-
-
-
Constructor Detail
-
ConfigParameterVO
public ConfigParameterVO()
-
ConfigParameterVO
public ConfigParameterVO(ConfigParameterVO otherBean)
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getApp
public String getApp()
Gets value for attribute app
-
setApp
public void setApp(String app)
Sets value for attribute app
-
getKey
public String getKey()
Gets value for attribute key
-
setKey
public void setKey(String key)
Sets value for attribute key
-
getValue
public String getValue()
Gets value for attribute value
-
setValue
public void setValue(String value)
Sets value for attribute value
-
toString
public String toString()
Returns a string representation of the value object.
-
toConfigParameterVO
public static ConfigParameterVO toConfigParameterVO(ConfigParameterVO vo)
Creates a ConfigParameterVO value object based on a ConfigParameterVO object.
-
toConfigParameterVOList
public static List<ConfigParameterVO> toConfigParameterVOList(Collection<ConfigParameterVO> source)
Creates a ConfigParameterVO list on a ConfigParameterVO collection.
-
toConfigParameterVOList
public static PagedResult<ConfigParameterVO> toConfigParameterVOList(PagedResult<ConfigParameterVO> source)
Creates a ConfigParameterVO pagedResult on a ConfigParameterVO collection.
-
toConfigParameterVOAsyncList
public static AsyncList<ConfigParameterVO> toConfigParameterVOAsyncList(AsyncList<ConfigParameterVO> source)
Creates a ConfigParameterVO asynclist on a ConfigParameterVO collection.
-
toConfigParameterVOArray
public static ConfigParameterVO[] toConfigParameterVOArray(ConfigParameterVO[] source)
Creates a ConfigParameterVO array on a ConfigParameterVO array.
-
toConfigParameterVO
public static void toConfigParameterVO(ConfigParameterVO source, ConfigParameterVO target)
Updates a ConfigParameterVO value object based on a ConfigParameterVO object.
-
-