Package es.caib.seycon.ng.comu
Class ServerPluginModule
- java.lang.Object
-
- es.caib.seycon.ng.comu.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 agentsStringgetInitClass()Gets value for attribute initClassStringgetName()Gets value for attribute nameStringgetResourceName()Gets value for attribute resourceNameServerPluginModuleTypegetType()Gets value for attribute typevoidsetAgents(Collection<AgentDescriptor> agents)Sets value for attribute agentsvoidsetInitClass(String initClass)Sets value for attribute initClassvoidsetName(String name)Sets value for attribute namevoidsetResourceName(String resourceName)Sets value for attribute resourceNamevoidsetType(ServerPluginModuleType type)Sets value for attribute typestatic ServerPluginModuletoServerPluginModule(ServerPluginModule vo)Creates a ServerPluginModule value object based on a ServerPluginModule object.static voidtoServerPluginModule(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.StringtoString()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.
-
-