Package com.soffid.iam.api
Class ExternalName
- java.lang.Object
-
- com.soffid.iam.api.ExternalName
-
- All Implemented Interfaces:
Serializable
public class ExternalName extends Object implements Serializable
ValueObject ExternalName- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExternalName()
ExternalName(ExternalName otherBean)
ExternalName(String email, String mailListName)
ExternalName(String email, String mailListName, String domainCode, Long id)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDomainCode()
Gets value for attribute domainCodeString
getEmail()
Gets value for attribute emailLong
getId()
Gets value for attribute idString
getMailListName()
Gets value for attribute mailListNamevoid
setDomainCode(String domainCode)
Sets value for attribute domainCodevoid
setEmail(String email)
Sets value for attribute emailvoid
setId(Long id)
Sets value for attribute idvoid
setMailListName(String mailListName)
Sets value for attribute mailListNamestatic ExternalName
toExternalName(CorreuExtern vo)
Creates a ExternalName value object based on a CorreuExtern object.static void
toExternalName(CorreuExtern source, ExternalName target)
Updates a ExternalName value object based on a CorreuExtern object.static ExternalName[]
toExternalNameArray(CorreuExtern[] source)
Creates a ExternalName array on a CorreuExtern array.static AsyncList<ExternalName>
toExternalNameAsyncList(AsyncList<CorreuExtern> source)
Creates a ExternalName asynclist on a CorreuExtern collection.static PagedResult<ExternalName>
toExternalNameList(PagedResult<CorreuExtern> source)
Creates a ExternalName pagedResult on a CorreuExtern collection.static List<ExternalName>
toExternalNameList(Collection<CorreuExtern> source)
Creates a ExternalName list on a CorreuExtern collection.String
toString()
Returns a string representation of the value object.
-
-
-
Method Detail
-
getEmail
public String getEmail()
Gets value for attribute email
-
setEmail
public void setEmail(String email)
Sets value for attribute email
-
getMailListName
public String getMailListName()
Gets value for attribute mailListName
-
setMailListName
public void setMailListName(String mailListName)
Sets value for attribute mailListName
-
getDomainCode
public String getDomainCode()
Gets value for attribute domainCode
-
setDomainCode
public void setDomainCode(String domainCode)
Sets value for attribute domainCode
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
toString
public String toString()
Returns a string representation of the value object.
-
toExternalName
public static ExternalName toExternalName(CorreuExtern vo)
Creates a ExternalName value object based on a CorreuExtern object.
-
toExternalNameList
public static List<ExternalName> toExternalNameList(Collection<CorreuExtern> source)
Creates a ExternalName list on a CorreuExtern collection.
-
toExternalNameList
public static PagedResult<ExternalName> toExternalNameList(PagedResult<CorreuExtern> source)
Creates a ExternalName pagedResult on a CorreuExtern collection.
-
toExternalNameAsyncList
public static AsyncList<ExternalName> toExternalNameAsyncList(AsyncList<CorreuExtern> source)
Creates a ExternalName asynclist on a CorreuExtern collection.
-
toExternalNameArray
public static ExternalName[] toExternalNameArray(CorreuExtern[] source)
Creates a ExternalName array on a CorreuExtern array.
-
toExternalName
public static void toExternalName(CorreuExtern source, ExternalName target)
Updates a ExternalName value object based on a CorreuExtern object.
-
-