Package com.soffid.iam.api
Class AgentDescriptor
- java.lang.Object
-
- com.soffid.iam.api.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 String
getClassName()
Gets value for attribute classNameString
getDescription()
Gets value for attribute descriptionLong
getId()
Gets value for attribute idbyte[]
getUserInterface()
Gets value for attribute userInterfaceboolean
isAuthoritativeSource()
Gets value for attribute authoritativeSourceboolean
isEnableAccessControl()
Gets value for attribute enableAccessControlboolean
isEnableAttributeMapping()
Gets value for attribute enableAttributeMappingboolean
isEnableObjectTriggers()
Gets value for attribute enableObjectTriggersboolean
isService()
Gets value for attribute servicevoid
setAuthoritativeSource(boolean authoritativeSource)
Sets value for attribute authoritativeSourcevoid
setClassName(String className)
Sets value for attribute classNamevoid
setDescription(String description)
Sets value for attribute descriptionvoid
setEnableAccessControl(boolean enableAccessControl)
Sets value for attribute enableAccessControlvoid
setEnableAttributeMapping(boolean enableAttributeMapping)
Sets value for attribute enableAttributeMappingvoid
setEnableObjectTriggers(boolean enableObjectTriggers)
Sets value for attribute enableObjectTriggersvoid
setId(Long id)
Sets value for attribute idvoid
setService(boolean service)
Sets value for attribute servicevoid
setUserInterface(byte[] userInterface)
Sets value for attribute userInterfacestatic AgentDescriptor
toAgentDescriptor(AgentDescriptor vo)
Creates a AgentDescriptor value object based on a AgentDescriptor object.static void
toAgentDescriptor(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.String
toString()
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.
-
-