Package com.soffid.iam.api
Class Domain
- java.lang.Object
-
- com.soffid.iam.api.Domain
-
- All Implemented Interfaces:
Serializable
public class Domain extends Object implements Serializable
ValueObject Domain- 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
getExternalCode()
Gets value for attribute externalCodeLong
getId()
Gets value for attribute idString
getName()
Gets value for attribute namevoid
setDescription(String description)
Sets value for attribute descriptionvoid
setExternalCode(String externalCode)
Sets value for attribute externalCodevoid
setId(Long id)
Sets value for attribute idvoid
setName(String name)
Sets value for attribute namestatic Domain
toDomain(Domini vo)
Creates a Domain value object based on a Domini object.static void
toDomain(Domini source, Domain target)
Updates a Domain value object based on a Domini object.static Domain[]
toDomainArray(Domini[] source)
Creates a Domain array on a Domini array.static AsyncList<Domain>
toDomainAsyncList(AsyncList<Domini> source)
Creates a Domain asynclist on a Domini collection.static PagedResult<Domain>
toDomainList(PagedResult<Domini> source)
Creates a Domain pagedResult on a Domini collection.static List<Domain>
toDomainList(Collection<Domini> source)
Creates a Domain list on a Domini collection.String
toString()
Returns a string representation of the value object.
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getExternalCode
public String getExternalCode()
Gets value for attribute externalCode
-
setExternalCode
public void setExternalCode(String externalCode)
Sets value for attribute externalCode
-
getDescription
public String getDescription()
Gets value for attribute description
-
setDescription
public void setDescription(String description)
Sets value for attribute description
-
toString
public String toString()
Returns a string representation of the value object.
-
toDomain
public static Domain toDomain(Domini vo)
Creates a Domain value object based on a Domini object.
-
toDomainList
public static List<Domain> toDomainList(Collection<Domini> source)
Creates a Domain list on a Domini collection.
-
toDomainList
public static PagedResult<Domain> toDomainList(PagedResult<Domini> source)
Creates a Domain pagedResult on a Domini collection.
-
toDomainAsyncList
public static AsyncList<Domain> toDomainAsyncList(AsyncList<Domini> source)
Creates a Domain asynclist on a Domini collection.
-
toDomainArray
public static Domain[] toDomainArray(Domini[] source)
Creates a Domain array on a Domini array.
-
-