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 StringgetDescription()Gets value for attribute descriptionStringgetGroupCode()Gets value for attribute groupCodeStringgetIdentityCode()Gets value for attribute identityCodeStringgetRoleName()Gets value for attribute roleNameStringgetUserCode()Gets value for attribute userCodevoidsetDescription(String description)Sets value for attribute descriptionvoidsetGroupCode(String groupCode)Sets value for attribute groupCodevoidsetIdentityCode(String identityCode)Sets value for attribute identityCodevoidsetRoleName(String roleName)Sets value for attribute roleNamevoidsetUserCode(String userCode)Sets value for attribute userCodestatic IdentitytoIdentity(Identitat vo)Creates a Identity value object based on a Identitat object.static voidtoIdentity(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.StringtoString()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.
-
-