Package com.soffid.iam.api
Class ContainerRole
- java.lang.Object
-
- com.soffid.iam.api.ContainerRole
-
- All Implemented Interfaces:
Serializable
public class ContainerRole extends Object implements Serializable
ValueObject ContainerRole- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContainerRole()
ContainerRole(ContainerRole otherBean)
ContainerRole(Long id, String containerInfo, String type, String metaInfo)
ContainerRole(Long id, String containerInfo, String type, Date certificationDate, String metaInfo)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getCertificationDate()
Gets value for attribute certificationDateString
getContainerInfo()
Gets value for attribute containerInfoLong
getId()
Gets value for attribute idString
getMetaInfo()
Gets value for attribute metaInfoString
getType()
Gets value for attribute typevoid
setCertificationDate(Date certificationDate)
Sets value for attribute certificationDatevoid
setContainerInfo(String containerInfo)
Sets value for attribute containerInfovoid
setId(Long id)
Sets value for attribute idvoid
setMetaInfo(String metaInfo)
Sets value for attribute metaInfovoid
setType(String type)
Sets value for attribute typestatic ContainerRole
toContainerRole(ContenidorRol vo)
Creates a ContainerRole value object based on a ContenidorRol object.static void
toContainerRole(ContenidorRol source, ContainerRole target)
Updates a ContainerRole value object based on a ContenidorRol object.static ContainerRole[]
toContainerRoleArray(ContenidorRol[] source)
Creates a ContainerRole array on a ContenidorRol array.static AsyncList<ContainerRole>
toContainerRoleAsyncList(AsyncList<ContenidorRol> source)
Creates a ContainerRole asynclist on a ContenidorRol collection.static PagedResult<ContainerRole>
toContainerRoleList(PagedResult<ContenidorRol> source)
Creates a ContainerRole pagedResult on a ContenidorRol collection.static List<ContainerRole>
toContainerRoleList(Collection<ContenidorRol> source)
Creates a ContainerRole list on a ContenidorRol 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
-
getContainerInfo
public String getContainerInfo()
Gets value for attribute containerInfo
-
setContainerInfo
public void setContainerInfo(String containerInfo)
Sets value for attribute containerInfo
-
getType
public String getType()
Gets value for attribute type
-
setType
public void setType(String type)
Sets value for attribute type
-
getCertificationDate
public Date getCertificationDate()
Gets value for attribute certificationDate
-
setCertificationDate
public void setCertificationDate(Date certificationDate)
Sets value for attribute certificationDate
-
getMetaInfo
public String getMetaInfo()
Gets value for attribute metaInfo
-
setMetaInfo
public void setMetaInfo(String metaInfo)
Sets value for attribute metaInfo
-
toString
public String toString()
Returns a string representation of the value object.
-
toContainerRole
public static ContainerRole toContainerRole(ContenidorRol vo)
Creates a ContainerRole value object based on a ContenidorRol object.
-
toContainerRoleList
public static List<ContainerRole> toContainerRoleList(Collection<ContenidorRol> source)
Creates a ContainerRole list on a ContenidorRol collection.
-
toContainerRoleList
public static PagedResult<ContainerRole> toContainerRoleList(PagedResult<ContenidorRol> source)
Creates a ContainerRole pagedResult on a ContenidorRol collection.
-
toContainerRoleAsyncList
public static AsyncList<ContainerRole> toContainerRoleAsyncList(AsyncList<ContenidorRol> source)
Creates a ContainerRole asynclist on a ContenidorRol collection.
-
toContainerRoleArray
public static ContainerRole[] toContainerRoleArray(ContenidorRol[] source)
Creates a ContainerRole array on a ContenidorRol array.
-
toContainerRole
public static void toContainerRole(ContenidorRol source, ContainerRole target)
Updates a ContainerRole value object based on a ContenidorRol object.
-
-