Package com.soffid.iam.api
Class Identity
- java.lang.Object
-
- com.soffid.iam.api.Identity
-
- All Implemented Interfaces:
Serializable
public class Identity extends Object implements Serializable
ValueObject Identity- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Gets value for attribute descriptionString
getGroupCode()
Gets value for attribute groupCodeString
getIdentityCode()
Gets value for attribute identityCodeString
getRoleName()
Gets value for attribute roleNameString
getUserCode()
Gets value for attribute userCodevoid
setDescription(String description)
Sets value for attribute descriptionvoid
setGroupCode(String groupCode)
Sets value for attribute groupCodevoid
setIdentityCode(String identityCode)
Sets value for attribute identityCodevoid
setRoleName(String roleName)
Sets value for attribute roleNamevoid
setUserCode(String userCode)
Sets value for attribute userCodestatic Identity
toIdentity(Identitat vo)
Creates a Identity value object based on a Identitat object.static void
toIdentity(Identitat source, Identity target)
Updates a Identity value object based on a Identitat object.static Identity[]
toIdentityArray(Identitat[] source)
Creates a Identity array on a Identitat array.static AsyncList<Identity>
toIdentityAsyncList(AsyncList<Identitat> source)
Creates a Identity asynclist on a Identitat collection.static PagedResult<Identity>
toIdentityList(PagedResult<Identitat> source)
Creates a Identity pagedResult on a Identitat collection.static List<Identity>
toIdentityList(Collection<Identitat> source)
Creates a Identity list on a Identitat collection.String
toString()
Returns a string representation of the value object.
-
-
-
Method Detail
-
getUserCode
public String getUserCode()
Gets value for attribute userCode
-
setUserCode
public void setUserCode(String userCode)
Sets value for attribute userCode
-
getGroupCode
public String getGroupCode()
Gets value for attribute groupCode
-
setGroupCode
public void setGroupCode(String groupCode)
Sets value for attribute groupCode
-
getRoleName
public String getRoleName()
Gets value for attribute roleName
-
setRoleName
public void setRoleName(String roleName)
Sets value for attribute roleName
-
getDescription
public String getDescription()
Gets value for attribute description
-
setDescription
public void setDescription(String description)
Sets value for attribute description
-
getIdentityCode
public String getIdentityCode()
Gets value for attribute identityCode
-
setIdentityCode
public void setIdentityCode(String identityCode)
Sets value for attribute identityCode
-
toString
public String toString()
Returns a string representation of the value object.
-
toIdentity
public static Identity toIdentity(Identitat vo)
Creates a Identity value object based on a Identitat object.
-
toIdentityList
public static List<Identity> toIdentityList(Collection<Identitat> source)
Creates a Identity list on a Identitat collection.
-
toIdentityList
public static PagedResult<Identity> toIdentityList(PagedResult<Identitat> source)
Creates a Identity pagedResult on a Identitat collection.
-
toIdentityAsyncList
public static AsyncList<Identity> toIdentityAsyncList(AsyncList<Identitat> source)
Creates a Identity asynclist on a Identitat collection.
-
toIdentityArray
public static Identity[] toIdentityArray(Identitat[] source)
Creates a Identity array on a Identitat array.
-
-