Package es.caib.seycon.ng.comu
Class AgentDescriptor
- java.lang.Object
-
- es.caib.seycon.ng.comu.AgentDescriptor
-
- All Implemented Interfaces:
Serializable
public class AgentDescriptor extends Object implements Serializable
ValueObject AgentDescriptor- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AgentDescriptor()AgentDescriptor(AgentDescriptor otherBean)AgentDescriptor(Long id, String description, String className, byte[] userInterface, boolean enableAccessControl, boolean authoritativeSource, boolean enableAttributeMapping, boolean enableObjectTriggers, boolean service)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClassName()Gets value for attribute classNameStringgetDescription()Gets value for attribute descriptionLonggetId()Gets value for attribute idbyte[]getUserInterface()Gets value for attribute userInterfacebooleanisAuthoritativeSource()Gets value for attribute authoritativeSourcebooleanisEnableAccessControl()Gets value for attribute enableAccessControlbooleanisEnableAttributeMapping()Gets value for attribute enableAttributeMappingbooleanisEnableObjectTriggers()Gets value for attribute enableObjectTriggersbooleanisService()Gets value for attribute servicevoidsetAuthoritativeSource(boolean authoritativeSource)Sets value for attribute authoritativeSourcevoidsetClassName(String className)Sets value for attribute classNamevoidsetDescription(String description)Sets value for attribute descriptionvoidsetEnableAccessControl(boolean enableAccessControl)Sets value for attribute enableAccessControlvoidsetEnableAttributeMapping(boolean enableAttributeMapping)Sets value for attribute enableAttributeMappingvoidsetEnableObjectTriggers(boolean enableObjectTriggers)Sets value for attribute enableObjectTriggersvoidsetId(Long id)Sets value for attribute idvoidsetService(boolean service)Sets value for attribute servicevoidsetUserInterface(byte[] userInterface)Sets value for attribute userInterfacestatic AgentDescriptortoAgentDescriptor(AgentDescriptor vo)Creates a AgentDescriptor value object based on a AgentDescriptor object.static voidtoAgentDescriptor(AgentDescriptor source, AgentDescriptor target)Updates a AgentDescriptor value object based on a AgentDescriptor object.static AgentDescriptor[]toAgentDescriptorArray(AgentDescriptor[] source)Creates a AgentDescriptor array on a AgentDescriptor array.static AsyncList<AgentDescriptor>toAgentDescriptorAsyncList(AsyncList<AgentDescriptor> source)Creates a AgentDescriptor asynclist on a AgentDescriptor collection.static PagedResult<AgentDescriptor>toAgentDescriptorList(PagedResult<AgentDescriptor> source)Creates a AgentDescriptor pagedResult on a AgentDescriptor collection.static List<AgentDescriptor>toAgentDescriptorList(Collection<AgentDescriptor> source)Creates a AgentDescriptor list on a AgentDescriptor collection.StringtoString()Returns a string representation of the value object.
-
-
-
Constructor Detail
-
AgentDescriptor
public AgentDescriptor()
-
AgentDescriptor
public AgentDescriptor(Long id, String description, String className, byte[] userInterface, boolean enableAccessControl, boolean authoritativeSource, boolean enableAttributeMapping, boolean enableObjectTriggers, boolean service)
-
AgentDescriptor
public AgentDescriptor(AgentDescriptor otherBean)
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getDescription
public String getDescription()
Gets value for attribute description
-
setDescription
public void setDescription(String description)
Sets value for attribute description
-
getClassName
public String getClassName()
Gets value for attribute className
-
setClassName
public void setClassName(String className)
Sets value for attribute className
-
getUserInterface
public byte[] getUserInterface()
Gets value for attribute userInterface
-
setUserInterface
public void setUserInterface(byte[] userInterface)
Sets value for attribute userInterface
-
isEnableAccessControl
public boolean isEnableAccessControl()
Gets value for attribute enableAccessControl
-
setEnableAccessControl
public void setEnableAccessControl(boolean enableAccessControl)
Sets value for attribute enableAccessControl
-
isAuthoritativeSource
public boolean isAuthoritativeSource()
Gets value for attribute authoritativeSource
-
setAuthoritativeSource
public void setAuthoritativeSource(boolean authoritativeSource)
Sets value for attribute authoritativeSource
-
isEnableAttributeMapping
public boolean isEnableAttributeMapping()
Gets value for attribute enableAttributeMapping
-
setEnableAttributeMapping
public void setEnableAttributeMapping(boolean enableAttributeMapping)
Sets value for attribute enableAttributeMapping
-
isEnableObjectTriggers
public boolean isEnableObjectTriggers()
Gets value for attribute enableObjectTriggers
-
setEnableObjectTriggers
public void setEnableObjectTriggers(boolean enableObjectTriggers)
Sets value for attribute enableObjectTriggers
-
isService
public boolean isService()
Gets value for attribute service
-
setService
public void setService(boolean service)
Sets value for attribute service
-
toString
public String toString()
Returns a string representation of the value object.
-
toAgentDescriptor
public static AgentDescriptor toAgentDescriptor(AgentDescriptor vo)
Creates a AgentDescriptor value object based on a AgentDescriptor object.
-
toAgentDescriptorList
public static List<AgentDescriptor> toAgentDescriptorList(Collection<AgentDescriptor> source)
Creates a AgentDescriptor list on a AgentDescriptor collection.
-
toAgentDescriptorList
public static PagedResult<AgentDescriptor> toAgentDescriptorList(PagedResult<AgentDescriptor> source)
Creates a AgentDescriptor pagedResult on a AgentDescriptor collection.
-
toAgentDescriptorAsyncList
public static AsyncList<AgentDescriptor> toAgentDescriptorAsyncList(AsyncList<AgentDescriptor> source)
Creates a AgentDescriptor asynclist on a AgentDescriptor collection.
-
toAgentDescriptorArray
public static AgentDescriptor[] toAgentDescriptorArray(AgentDescriptor[] source)
Creates a AgentDescriptor array on a AgentDescriptor array.
-
toAgentDescriptor
public static void toAgentDescriptor(AgentDescriptor source, AgentDescriptor target)
Updates a AgentDescriptor value object based on a AgentDescriptor object.
-
-