Package com.soffid.iam.bpm.api
Class ConfigParameterVO
- java.lang.Object
-
- com.soffid.iam.bpm.api.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 String
getApp()
Gets value for attribute appLong
getId()
Gets value for attribute idString
getKey()
Gets value for attribute keyString
getValue()
Gets value for attribute valuevoid
setApp(String app)
Sets value for attribute appvoid
setId(Long id)
Sets value for attribute idvoid
setKey(String key)
Sets value for attribute keyvoid
setValue(String value)
Sets value for attribute valuestatic ConfigParameterVO
toConfigParameterVO(ConfigParameterVO vo)
Creates a ConfigParameterVO value object based on a ConfigParameterVO object.static void
toConfigParameterVO(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.String
toString()
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.
-
-