Package es.caib.seycon.ng.comu
Class AttributeMapping
- java.lang.Object
-
- es.caib.seycon.ng.comu.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 AttributeDirection
getDirection()
Gets value for attribute directionLong
getId()
Gets value for attribute idLong
getObjectId()
Gets value for attribute objectIdString
getSoffidAttribute()
Gets value for attribute soffidAttributeString
getSystemAttribute()
Gets value for attribute systemAttributevoid
setDirection(AttributeDirection direction)
Sets value for attribute directionvoid
setId(Long id)
Sets value for attribute idvoid
setObjectId(Long objectId)
Sets value for attribute objectIdvoid
setSoffidAttribute(String soffidAttribute)
Sets value for attribute soffidAttributevoid
setSystemAttribute(String systemAttribute)
Sets value for attribute systemAttributestatic AttributeMapping
toAttributeMapping(AttributeMapping vo)
Creates a AttributeMapping value object based on a AttributeMapping object.static void
toAttributeMapping(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.String
toString()
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.
-
-