Package com.soffid.iam.api
Class AttributeMapping
- java.lang.Object
-
- com.soffid.iam.api.AttributeMapping
-
- All Implemented Interfaces:
Serializable
public class AttributeMapping extends Object implements Serializable
ValueObject AttributeMapping- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AttributeMapping()AttributeMapping(AttributeMapping otherBean)AttributeMapping(Long id, String soffidAttribute, String systemAttribute, AttributeDirection direction, Long objectId)AttributeMapping(String soffidAttribute, String systemAttribute, AttributeDirection direction, Long objectId)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AttributeDirectiongetDirection()Gets value for attribute directionLonggetId()Gets value for attribute idLonggetObjectId()Gets value for attribute objectIdStringgetSoffidAttribute()Gets value for attribute soffidAttributeStringgetSystemAttribute()Gets value for attribute systemAttributevoidsetDirection(AttributeDirection direction)Sets value for attribute directionvoidsetId(Long id)Sets value for attribute idvoidsetObjectId(Long objectId)Sets value for attribute objectIdvoidsetSoffidAttribute(String soffidAttribute)Sets value for attribute soffidAttributevoidsetSystemAttribute(String systemAttribute)Sets value for attribute systemAttributestatic AttributeMappingtoAttributeMapping(AttributeMapping vo)Creates a AttributeMapping value object based on a AttributeMapping object.static voidtoAttributeMapping(AttributeMapping source, AttributeMapping target)Updates a AttributeMapping value object based on a AttributeMapping object.static AttributeMapping[]toAttributeMappingArray(AttributeMapping[] source)Creates a AttributeMapping array on a AttributeMapping array.static AsyncList<AttributeMapping>toAttributeMappingAsyncList(AsyncList<AttributeMapping> source)Creates a AttributeMapping asynclist on a AttributeMapping collection.static PagedResult<AttributeMapping>toAttributeMappingList(PagedResult<AttributeMapping> source)Creates a AttributeMapping pagedResult on a AttributeMapping collection.static List<AttributeMapping>toAttributeMappingList(Collection<AttributeMapping> source)Creates a AttributeMapping list on a AttributeMapping collection.StringtoString()Returns a string representation of the value object.
-
-
-
Constructor Detail
-
AttributeMapping
public AttributeMapping()
-
AttributeMapping
public AttributeMapping(Long id, String soffidAttribute, String systemAttribute, AttributeDirection direction, Long objectId)
-
AttributeMapping
public AttributeMapping(String soffidAttribute, String systemAttribute, AttributeDirection direction, Long objectId)
-
AttributeMapping
public AttributeMapping(AttributeMapping otherBean)
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getSoffidAttribute
public String getSoffidAttribute()
Gets value for attribute soffidAttribute
-
setSoffidAttribute
public void setSoffidAttribute(String soffidAttribute)
Sets value for attribute soffidAttribute
-
getSystemAttribute
public String getSystemAttribute()
Gets value for attribute systemAttribute
-
setSystemAttribute
public void setSystemAttribute(String systemAttribute)
Sets value for attribute systemAttribute
-
getDirection
public AttributeDirection getDirection()
Gets value for attribute direction
-
setDirection
public void setDirection(AttributeDirection direction)
Sets value for attribute direction
-
getObjectId
public Long getObjectId()
Gets value for attribute objectId
-
setObjectId
public void setObjectId(Long objectId)
Sets value for attribute objectId
-
toString
public String toString()
Returns a string representation of the value object.
-
toAttributeMapping
public static AttributeMapping toAttributeMapping(AttributeMapping vo)
Creates a AttributeMapping value object based on a AttributeMapping object.
-
toAttributeMappingList
public static List<AttributeMapping> toAttributeMappingList(Collection<AttributeMapping> source)
Creates a AttributeMapping list on a AttributeMapping collection.
-
toAttributeMappingList
public static PagedResult<AttributeMapping> toAttributeMappingList(PagedResult<AttributeMapping> source)
Creates a AttributeMapping pagedResult on a AttributeMapping collection.
-
toAttributeMappingAsyncList
public static AsyncList<AttributeMapping> toAttributeMappingAsyncList(AsyncList<AttributeMapping> source)
Creates a AttributeMapping asynclist on a AttributeMapping collection.
-
toAttributeMappingArray
public static AttributeMapping[] toAttributeMappingArray(AttributeMapping[] source)
Creates a AttributeMapping array on a AttributeMapping array.
-
toAttributeMapping
public static void toAttributeMapping(AttributeMapping source, AttributeMapping target)
Updates a AttributeMapping value object based on a AttributeMapping object.
-
-