Package com.soffid.iam.model
Class AccessLogEntity
- java.lang.Object
-
- com.soffid.iam.model.AccessLogEntity
-
- Direct Known Subclasses:
AccessLogEntityImpl
public abstract class AccessLogEntity extends Object
Entity AccessLogEntity
-
-
Constructor Summary
Constructors Constructor Description AccessLogEntity()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an AccessLogEntity instance and all identifiers for this entity equal the identifiers of the argument entity.String
getAccessType()
Gets value for attribute accessTypeString
getAccountName()
Gets value for attribute accountNameHostEntity
getClient()
Gets value for attribute clientString
getClientAddress()
Gets value for attribute clientAddressString
getClientHostName()
Gets value for attribute clientHostNameDate
getEndDate()
Gets value for attribute endDateString
getHostAddress()
Gets value for attribute hostAddressString
getHostName()
Gets value for attribute hostNameLong
getId()
Gets value for attribute idString
getInformation()
Gets value for attribute informationString
getJumpServerGroup()
Gets value for attribute jumpServerGroupServiceEntity
getProtocol()
Gets value for attribute protocolHostEntity
getServer()
Gets value for attribute serverString
getSessionId()
Gets value for attribute sessionIdDate
getStartDate()
Gets value for attribute startDateString
getSystem()
Gets value for attribute systemTenantEntity
getTenant()
Gets value for attribute tenantUserEntity
getUser()
Gets value for attribute userint
hashCode()
Returns a hash code based on this entity's identifiers.abstract boolean
isAllowed(String permission)
Operation isAllowed Returns true if the permission on this object is grantedvoid
setAccessType(String accessType)
Sets value for attribute accessTypevoid
setAccountName(String accountName)
Sets value for attribute accountNamevoid
setClient(HostEntity client)
Sets value for attribute clientvoid
setClientAddress(String clientAddress)
Sets value for attribute clientAddressvoid
setClientHostName(String clientHostName)
Sets value for attribute clientHostNamevoid
setEndDate(Date endDate)
Sets value for attribute endDatevoid
setHostAddress(String hostAddress)
Sets value for attribute hostAddressvoid
setHostName(String hostName)
Sets value for attribute hostNamevoid
setId(Long id)
Sets value for attribute idvoid
setInformation(String information)
Sets value for attribute informationvoid
setJumpServerGroup(String jumpServerGroup)
Sets value for attribute jumpServerGroupvoid
setProtocol(ServiceEntity protocol)
Sets value for attribute protocolvoid
setServer(HostEntity server)
Sets value for attribute servervoid
setSessionId(String sessionId)
Sets value for attribute sessionIdvoid
setStartDate(Date startDate)
Sets value for attribute startDatevoid
setSystem(String system)
Sets value for attribute systemvoid
setTenant(TenantEntity tenant)
Sets value for attribute tenantvoid
setUser(UserEntity user)
Sets value for attribute user
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getSessionId
public String getSessionId()
Gets value for attribute sessionId
-
setSessionId
public void setSessionId(String sessionId)
Sets value for attribute sessionId
-
getStartDate
public Date getStartDate()
Gets value for attribute startDate
-
setStartDate
public void setStartDate(Date startDate)
Sets value for attribute startDate
-
getEndDate
public Date getEndDate()
Gets value for attribute endDate
-
setEndDate
public void setEndDate(Date endDate)
Sets value for attribute endDate
-
getSystem
public String getSystem()
Gets value for attribute system
-
setSystem
public void setSystem(String system)
Sets value for attribute system
-
getInformation
public String getInformation()
Gets value for attribute information
-
setInformation
public void setInformation(String information)
Sets value for attribute information
-
getServer
public HostEntity getServer()
Gets value for attribute server
-
setServer
public void setServer(HostEntity server)
Sets value for attribute server
-
getClient
public HostEntity getClient()
Gets value for attribute client
-
setClient
public void setClient(HostEntity client)
Sets value for attribute client
-
getProtocol
public ServiceEntity getProtocol()
Gets value for attribute protocol
-
setProtocol
public void setProtocol(ServiceEntity protocol)
Sets value for attribute protocol
-
getUser
public UserEntity getUser()
Gets value for attribute user
-
setUser
public void setUser(UserEntity user)
Sets value for attribute user
-
getAccessType
public String getAccessType()
Gets value for attribute accessType
-
setAccessType
public void setAccessType(String accessType)
Sets value for attribute accessType
-
getClientAddress
public String getClientAddress()
Gets value for attribute clientAddress
-
setClientAddress
public void setClientAddress(String clientAddress)
Sets value for attribute clientAddress
-
getClientHostName
public String getClientHostName()
Gets value for attribute clientHostName
-
setClientHostName
public void setClientHostName(String clientHostName)
Sets value for attribute clientHostName
-
getHostAddress
public String getHostAddress()
Gets value for attribute hostAddress
-
setHostAddress
public void setHostAddress(String hostAddress)
Sets value for attribute hostAddress
-
getHostName
public String getHostName()
Gets value for attribute hostName
-
setHostName
public void setHostName(String hostName)
Sets value for attribute hostName
-
getTenant
public TenantEntity getTenant()
Gets value for attribute tenant
-
setTenant
public void setTenant(TenantEntity tenant)
Sets value for attribute tenant
-
getJumpServerGroup
public String getJumpServerGroup()
Gets value for attribute jumpServerGroup
-
setJumpServerGroup
public void setJumpServerGroup(String jumpServerGroup)
Sets value for attribute jumpServerGroup
-
getAccountName
public String getAccountName()
Gets value for attribute accountName
-
setAccountName
public void setAccountName(String accountName)
Sets value for attribute accountName
-
isAllowed
public abstract boolean isAllowed(String permission)
Operation isAllowed Returns true if the permission on this object is granted- Parameters:
permission
-- Returns:
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an AccessLogEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-