Package com.soffid.iam.api
Class AccessControl
- java.lang.Object
-
- com.soffid.iam.api.AccessControl
-
- All Implemented Interfaces:
Serializable
public class AccessControl extends Object implements Serializable
ValueObject AccessControl- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AccessControl()AccessControl(AccessControl otherBean)AccessControl(Long id, Long agentId, String agentName, String roleDescription, Long roleId, String hostName, Long hostId, String program, String genericUser, String genericHost, String remoteIp, String comments)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetAgentId()Gets value for attribute agentIdStringgetAgentName()Gets value for attribute agentNameStringgetComments()Gets value for attribute commentsStringgetGenericHost()Gets value for attribute genericHostStringgetGenericUser()Gets value for attribute genericUserLonggetHostId()Gets value for attribute hostIdStringgetHostName()Gets value for attribute hostNameLonggetId()Gets value for attribute idStringgetProgram()Gets value for attribute programStringgetRemoteIp()Gets value for attribute remoteIpStringgetRoleDescription()Gets value for attribute roleDescriptionLonggetRoleId()Gets value for attribute roleIdvoidsetAgentId(Long agentId)Sets value for attribute agentIdvoidsetAgentName(String agentName)Sets value for attribute agentNamevoidsetComments(String comments)Sets value for attribute commentsvoidsetGenericHost(String genericHost)Sets value for attribute genericHostvoidsetGenericUser(String genericUser)Sets value for attribute genericUservoidsetHostId(Long hostId)Sets value for attribute hostIdvoidsetHostName(String hostName)Sets value for attribute hostNamevoidsetId(Long id)Sets value for attribute idvoidsetProgram(String program)Sets value for attribute programvoidsetRemoteIp(String remoteIp)Sets value for attribute remoteIpvoidsetRoleDescription(String roleDescription)Sets value for attribute roleDescriptionvoidsetRoleId(Long roleId)Sets value for attribute roleIdstatic AccessControltoAccessControl(ControlAcces vo)Creates a AccessControl value object based on a ControlAcces object.static voidtoAccessControl(ControlAcces source, AccessControl target)Updates a AccessControl value object based on a ControlAcces object.static AccessControl[]toAccessControlArray(ControlAcces[] source)Creates a AccessControl array on a ControlAcces array.static AsyncList<AccessControl>toAccessControlAsyncList(AsyncList<ControlAcces> source)Creates a AccessControl asynclist on a ControlAcces collection.static PagedResult<AccessControl>toAccessControlList(PagedResult<ControlAcces> source)Creates a AccessControl pagedResult on a ControlAcces collection.static List<AccessControl>toAccessControlList(Collection<ControlAcces> source)Creates a AccessControl list on a ControlAcces collection.StringtoString()Returns a string representation of the value object.
-
-
-
Constructor Detail
-
AccessControl
public AccessControl()
-
AccessControl
public AccessControl(Long id, Long agentId, String agentName, String roleDescription, Long roleId, String hostName, Long hostId, String program, String genericUser, String genericHost, String remoteIp, String comments)
-
AccessControl
public AccessControl(AccessControl otherBean)
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getAgentId
public Long getAgentId()
Gets value for attribute agentId
-
setAgentId
public void setAgentId(Long agentId)
Sets value for attribute agentId
-
getAgentName
public String getAgentName()
Gets value for attribute agentName
-
setAgentName
public void setAgentName(String agentName)
Sets value for attribute agentName
-
getRoleDescription
public String getRoleDescription()
Gets value for attribute roleDescription
-
setRoleDescription
public void setRoleDescription(String roleDescription)
Sets value for attribute roleDescription
-
getRoleId
public Long getRoleId()
Gets value for attribute roleId
-
setRoleId
public void setRoleId(Long roleId)
Sets value for attribute roleId
-
getHostName
public String getHostName()
Gets value for attribute hostName
-
setHostName
public void setHostName(String hostName)
Sets value for attribute hostName
-
getHostId
public Long getHostId()
Gets value for attribute hostId
-
setHostId
public void setHostId(Long hostId)
Sets value for attribute hostId
-
getProgram
public String getProgram()
Gets value for attribute program
-
setProgram
public void setProgram(String program)
Sets value for attribute program
-
getGenericUser
public String getGenericUser()
Gets value for attribute genericUser
-
setGenericUser
public void setGenericUser(String genericUser)
Sets value for attribute genericUser
-
getGenericHost
public String getGenericHost()
Gets value for attribute genericHost
-
setGenericHost
public void setGenericHost(String genericHost)
Sets value for attribute genericHost
-
getRemoteIp
public String getRemoteIp()
Gets value for attribute remoteIp
-
setRemoteIp
public void setRemoteIp(String remoteIp)
Sets value for attribute remoteIp
-
getComments
public String getComments()
Gets value for attribute comments
-
setComments
public void setComments(String comments)
Sets value for attribute comments
-
toString
public String toString()
Returns a string representation of the value object.
-
toAccessControl
public static AccessControl toAccessControl(ControlAcces vo)
Creates a AccessControl value object based on a ControlAcces object.
-
toAccessControlList
public static List<AccessControl> toAccessControlList(Collection<ControlAcces> source)
Creates a AccessControl list on a ControlAcces collection.
-
toAccessControlList
public static PagedResult<AccessControl> toAccessControlList(PagedResult<ControlAcces> source)
Creates a AccessControl pagedResult on a ControlAcces collection.
-
toAccessControlAsyncList
public static AsyncList<AccessControl> toAccessControlAsyncList(AsyncList<ControlAcces> source)
Creates a AccessControl asynclist on a ControlAcces collection.
-
toAccessControlArray
public static AccessControl[] toAccessControlArray(ControlAcces[] source)
Creates a AccessControl array on a ControlAcces array.
-
toAccessControl
public static void toAccessControl(ControlAcces source, AccessControl target)
Updates a AccessControl value object based on a ControlAcces object.
-
-