Package com.soffid.iam.api
Class ServerPluginModule
- java.lang.Object
-
- com.soffid.iam.api.ServerPluginModule
-
- All Implemented Interfaces:
Serializable
public class ServerPluginModule extends Object implements Serializable
ValueObject ServerPluginModule- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServerPluginModule()
ServerPluginModule(ServerPluginModule otherBean)
ServerPluginModule(String name, ServerPluginModuleType type)
ServerPluginModule(String name, ServerPluginModuleType type, String initClass, Collection<AgentDescriptor> agents, String resourceName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<AgentDescriptor>
getAgents()
Gets value for attribute agentsString
getInitClass()
Gets value for attribute initClassString
getName()
Gets value for attribute nameString
getResourceName()
Gets value for attribute resourceNameServerPluginModuleType
getType()
Gets value for attribute typevoid
setAgents(Collection<AgentDescriptor> agents)
Sets value for attribute agentsvoid
setInitClass(String initClass)
Sets value for attribute initClassvoid
setName(String name)
Sets value for attribute namevoid
setResourceName(String resourceName)
Sets value for attribute resourceNamevoid
setType(ServerPluginModuleType type)
Sets value for attribute typestatic ServerPluginModule
toServerPluginModule(ServerPluginModule vo)
Creates a ServerPluginModule value object based on a ServerPluginModule object.static void
toServerPluginModule(ServerPluginModule source, ServerPluginModule target)
Updates a ServerPluginModule value object based on a ServerPluginModule object.static ServerPluginModule[]
toServerPluginModuleArray(ServerPluginModule[] source)
Creates a ServerPluginModule array on a ServerPluginModule array.static AsyncList<ServerPluginModule>
toServerPluginModuleAsyncList(AsyncList<ServerPluginModule> source)
Creates a ServerPluginModule asynclist on a ServerPluginModule collection.static PagedResult<ServerPluginModule>
toServerPluginModuleList(PagedResult<ServerPluginModule> source)
Creates a ServerPluginModule pagedResult on a ServerPluginModule collection.static List<ServerPluginModule>
toServerPluginModuleList(Collection<ServerPluginModule> source)
Creates a ServerPluginModule list on a ServerPluginModule collection.String
toString()
Returns a string representation of the value object.
-
-
-
Constructor Detail
-
ServerPluginModule
public ServerPluginModule()
-
ServerPluginModule
public ServerPluginModule(String name, ServerPluginModuleType type, String initClass, Collection<AgentDescriptor> agents, String resourceName)
-
ServerPluginModule
public ServerPluginModule(String name, ServerPluginModuleType type)
-
ServerPluginModule
public ServerPluginModule(ServerPluginModule otherBean)
-
-
Method Detail
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getType
public ServerPluginModuleType getType()
Gets value for attribute type
-
setType
public void setType(ServerPluginModuleType type)
Sets value for attribute type
-
getInitClass
public String getInitClass()
Gets value for attribute initClass
-
setInitClass
public void setInitClass(String initClass)
Sets value for attribute initClass
-
getAgents
public Collection<AgentDescriptor> getAgents()
Gets value for attribute agents
-
setAgents
public void setAgents(Collection<AgentDescriptor> agents)
Sets value for attribute agents
-
getResourceName
public String getResourceName()
Gets value for attribute resourceName
-
setResourceName
public void setResourceName(String resourceName)
Sets value for attribute resourceName
-
toString
public String toString()
Returns a string representation of the value object.
-
toServerPluginModule
public static ServerPluginModule toServerPluginModule(ServerPluginModule vo)
Creates a ServerPluginModule value object based on a ServerPluginModule object.
-
toServerPluginModuleList
public static List<ServerPluginModule> toServerPluginModuleList(Collection<ServerPluginModule> source)
Creates a ServerPluginModule list on a ServerPluginModule collection.
-
toServerPluginModuleList
public static PagedResult<ServerPluginModule> toServerPluginModuleList(PagedResult<ServerPluginModule> source)
Creates a ServerPluginModule pagedResult on a ServerPluginModule collection.
-
toServerPluginModuleAsyncList
public static AsyncList<ServerPluginModule> toServerPluginModuleAsyncList(AsyncList<ServerPluginModule> source)
Creates a ServerPluginModule asynclist on a ServerPluginModule collection.
-
toServerPluginModuleArray
public static ServerPluginModule[] toServerPluginModuleArray(ServerPluginModule[] source)
Creates a ServerPluginModule array on a ServerPluginModule array.
-
toServerPluginModule
public static void toServerPluginModule(ServerPluginModule source, ServerPluginModule target)
Updates a ServerPluginModule value object based on a ServerPluginModule object.
-
-