Package com.soffid.iam.bpm.api
Class BPMUser
- java.lang.Object
-
- com.soffid.iam.bpm.api.BPMUser
-
- All Implemented Interfaces:
Serializable
public class BPMUser extends Object implements Serializable
ValueObject BPMUser- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getGivenName()
Gets value for attribute givenNameString
getGroup()
Gets value for attribute groupString
getSurName()
Gets value for attribute surNameString
getUserName()
Gets value for attribute userNamevoid
setGivenName(String givenName)
Sets value for attribute givenNamevoid
setGroup(String group)
Sets value for attribute groupvoid
setSurName(String surName)
Sets value for attribute surNamevoid
setUserName(String userName)
Sets value for attribute userNamestatic BPMUser
toBPMUser(BPMUser vo)
Creates a BPMUser value object based on a BPMUser object.static void
toBPMUser(BPMUser source, BPMUser target)
Updates a BPMUser value object based on a BPMUser object.static BPMUser[]
toBPMUserArray(BPMUser[] source)
Creates a BPMUser array on a BPMUser array.static AsyncList<BPMUser>
toBPMUserAsyncList(AsyncList<BPMUser> source)
Creates a BPMUser asynclist on a BPMUser collection.static PagedResult<BPMUser>
toBPMUserList(PagedResult<BPMUser> source)
Creates a BPMUser pagedResult on a BPMUser collection.static List<BPMUser>
toBPMUserList(Collection<BPMUser> source)
Creates a BPMUser list on a BPMUser collection.String
toString()
Returns a string representation of the value object.
-
-
-
Method Detail
-
getUserName
public String getUserName()
Gets value for attribute userName
-
setUserName
public void setUserName(String userName)
Sets value for attribute userName
-
getGivenName
public String getGivenName()
Gets value for attribute givenName
-
setGivenName
public void setGivenName(String givenName)
Sets value for attribute givenName
-
getSurName
public String getSurName()
Gets value for attribute surName
-
setSurName
public void setSurName(String surName)
Sets value for attribute surName
-
getGroup
public String getGroup()
Gets value for attribute group
-
setGroup
public void setGroup(String group)
Sets value for attribute group
-
toString
public String toString()
Returns a string representation of the value object.
-
toBPMUser
public static BPMUser toBPMUser(BPMUser vo)
Creates a BPMUser value object based on a BPMUser object.
-
toBPMUserList
public static List<BPMUser> toBPMUserList(Collection<BPMUser> source)
Creates a BPMUser list on a BPMUser collection.
-
toBPMUserList
public static PagedResult<BPMUser> toBPMUserList(PagedResult<BPMUser> source)
Creates a BPMUser pagedResult on a BPMUser collection.
-
toBPMUserAsyncList
public static AsyncList<BPMUser> toBPMUserAsyncList(AsyncList<BPMUser> source)
Creates a BPMUser asynclist on a BPMUser collection.
-
toBPMUserArray
public static BPMUser[] toBPMUserArray(BPMUser[] source)
Creates a BPMUser array on a BPMUser array.
-
-