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 booleanequals(Object object)Returnstrueif the argument is an AccessLogEntity instance and all identifiers for this entity equal the identifiers of the argument entity.StringgetAccessType()Gets value for attribute accessTypeStringgetAccountName()Gets value for attribute accountNameHostEntitygetClient()Gets value for attribute clientStringgetClientAddress()Gets value for attribute clientAddressStringgetClientHostName()Gets value for attribute clientHostNameDategetEndDate()Gets value for attribute endDateStringgetHostAddress()Gets value for attribute hostAddressStringgetHostName()Gets value for attribute hostNameLonggetId()Gets value for attribute idStringgetInformation()Gets value for attribute informationStringgetJumpServerGroup()Gets value for attribute jumpServerGroupServiceEntitygetProtocol()Gets value for attribute protocolHostEntitygetServer()Gets value for attribute serverStringgetSessionId()Gets value for attribute sessionIdDategetStartDate()Gets value for attribute startDateStringgetSystem()Gets value for attribute systemTenantEntitygetTenant()Gets value for attribute tenantUserEntitygetUser()Gets value for attribute userinthashCode()Returns a hash code based on this entity's identifiers.abstract booleanisAllowed(String permission)Operation isAllowed Returns true if the permission on this object is grantedvoidsetAccessType(String accessType)Sets value for attribute accessTypevoidsetAccountName(String accountName)Sets value for attribute accountNamevoidsetClient(HostEntity client)Sets value for attribute clientvoidsetClientAddress(String clientAddress)Sets value for attribute clientAddressvoidsetClientHostName(String clientHostName)Sets value for attribute clientHostNamevoidsetEndDate(Date endDate)Sets value for attribute endDatevoidsetHostAddress(String hostAddress)Sets value for attribute hostAddressvoidsetHostName(String hostName)Sets value for attribute hostNamevoidsetId(Long id)Sets value for attribute idvoidsetInformation(String information)Sets value for attribute informationvoidsetJumpServerGroup(String jumpServerGroup)Sets value for attribute jumpServerGroupvoidsetProtocol(ServiceEntity protocol)Sets value for attribute protocolvoidsetServer(HostEntity server)Sets value for attribute servervoidsetSessionId(String sessionId)Sets value for attribute sessionIdvoidsetStartDate(Date startDate)Sets value for attribute startDatevoidsetSystem(String system)Sets value for attribute systemvoidsetTenant(TenantEntity tenant)Sets value for attribute tenantvoidsetUser(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)
Returnstrueif the argument is an AccessLogEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-