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 StringgetDescription()Gets value for attribute descriptionStringgetExternalCode()Gets value for attribute externalCodeLonggetId()Gets value for attribute idStringgetName()Gets value for attribute namevoidsetDescription(String description)Sets value for attribute descriptionvoidsetExternalCode(String externalCode)Sets value for attribute externalCodevoidsetId(Long id)Sets value for attribute idvoidsetName(String name)Sets value for attribute namestatic DomaintoDomain(Domini vo)Creates a Domain value object based on a Domini object.static voidtoDomain(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.StringtoString()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.
-
-