Package com.soffid.iam.sync.agent
Class Plugin
- java.lang.Object
-
- com.soffid.iam.sync.agent.Plugin
-
- All Implemented Interfaces:
Serializable
public class Plugin extends Object implements Serializable
ValueObject Plugin- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getContent()
Gets value for attribute contentString
getName()
Gets value for attribute nameString
getVersion()
Gets value for attribute versionvoid
setContent(byte[] content)
Sets value for attribute contentvoid
setName(String name)
Sets value for attribute namevoid
setVersion(String version)
Sets value for attribute versionstatic Plugin
toPlugin(Plugin vo)
Creates a Plugin value object based on a Plugin object.static void
toPlugin(Plugin source, Plugin target)
Updates a Plugin value object based on a Plugin object.static Plugin[]
toPluginArray(Plugin[] source)
Creates a Plugin array on a Plugin array.static AsyncList<Plugin>
toPluginAsyncList(AsyncList<Plugin> source)
Creates a Plugin asynclist on a Plugin collection.static PagedResult<Plugin>
toPluginList(PagedResult<Plugin> source)
Creates a Plugin pagedResult on a Plugin collection.static List<Plugin>
toPluginList(Collection<Plugin> source)
Creates a Plugin list on a Plugin collection.String
toString()
Returns a string representation of the value object.
-
-
-
Method Detail
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getVersion
public String getVersion()
Gets value for attribute version
-
setVersion
public void setVersion(String version)
Sets value for attribute version
-
getContent
public byte[] getContent()
Gets value for attribute content
-
setContent
public void setContent(byte[] content)
Sets value for attribute content
-
toString
public String toString()
Returns a string representation of the value object.
-
toPlugin
public static Plugin toPlugin(Plugin vo)
Creates a Plugin value object based on a Plugin object.
-
toPluginList
public static List<Plugin> toPluginList(Collection<Plugin> source)
Creates a Plugin list on a Plugin collection.
-
toPluginList
public static PagedResult<Plugin> toPluginList(PagedResult<Plugin> source)
Creates a Plugin pagedResult on a Plugin collection.
-
toPluginAsyncList
public static AsyncList<Plugin> toPluginAsyncList(AsyncList<Plugin> source)
Creates a Plugin asynclist on a Plugin collection.
-
toPluginArray
public static Plugin[] toPluginArray(Plugin[] source)
Creates a Plugin array on a Plugin array.
-
-