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 Long
getAgentId()
Gets value for attribute agentIdString
getAgentName()
Gets value for attribute agentNameString
getComments()
Gets value for attribute commentsString
getGenericHost()
Gets value for attribute genericHostString
getGenericUser()
Gets value for attribute genericUserLong
getHostId()
Gets value for attribute hostIdString
getHostName()
Gets value for attribute hostNameLong
getId()
Gets value for attribute idString
getProgram()
Gets value for attribute programString
getRemoteIp()
Gets value for attribute remoteIpString
getRoleDescription()
Gets value for attribute roleDescriptionLong
getRoleId()
Gets value for attribute roleIdvoid
setAgentId(Long agentId)
Sets value for attribute agentIdvoid
setAgentName(String agentName)
Sets value for attribute agentNamevoid
setComments(String comments)
Sets value for attribute commentsvoid
setGenericHost(String genericHost)
Sets value for attribute genericHostvoid
setGenericUser(String genericUser)
Sets value for attribute genericUservoid
setHostId(Long hostId)
Sets value for attribute hostIdvoid
setHostName(String hostName)
Sets value for attribute hostNamevoid
setId(Long id)
Sets value for attribute idvoid
setProgram(String program)
Sets value for attribute programvoid
setRemoteIp(String remoteIp)
Sets value for attribute remoteIpvoid
setRoleDescription(String roleDescription)
Sets value for attribute roleDescriptionvoid
setRoleId(Long roleId)
Sets value for attribute roleIdstatic AccessControl
toAccessControl(ControlAcces vo)
Creates a AccessControl value object based on a ControlAcces object.static void
toAccessControl(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.String
toString()
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.
-
-