Package org.keycloak.models.map.events
Interface MapAdminEventEntity
-
- All Superinterfaces:
AbstractEntity
,ExpirableEntity
,UpdatableEntity
- All Known Implementing Classes:
HotRodAdminEventEntity.AbstractHotRodAdminEventEntityDelegate
,HotRodAdminEventEntityDelegate
,JpaAdminEventEntity
,JpaAdminEventMetadata
,MapAdminEventEntity.AbstractAdminEventEntity
,MapAdminEventEntityDelegate
,MapAdminEventEntityFieldDelegate
,MapAdminEventEntityImpl
,MapAdminEventEntityImpl.Empty
public interface MapAdminEventEntity extends UpdatableEntity, AbstractEntity, ExpirableEntity
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
MapAdminEventEntity.AbstractAdminEventEntity
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAuthClientId()
String
getAuthIpAddress()
String
getAuthRealmId()
String
getAuthUserId()
String
getError()
OperationType
getOperationType()
String
getRealmId()
String
getRepresentation()
String
getResourcePath()
String
getResourceType()
Long
getTimestamp()
Returns a point in time (timestamp in milliseconds since The Epoch) when the event was created.void
setAuthClientId(String clientId)
void
setAuthIpAddress(String ipAddress)
void
setAuthRealmId(String realmId)
void
setAuthUserId(String userId)
void
setError(String error)
void
setOperationType(OperationType operationType)
void
setRealmId(String realmId)
void
setRepresentation(String representation)
void
setResourcePath(String resourcePath)
void
setResourceType(String resourceType)
void
setTimestamp(Long timestamp)
Sets a point in the (timestamp in milliseconds since The Epoch) when this entity was created.-
Methods inherited from interface org.keycloak.models.map.common.AbstractEntity
getId, setId
-
Methods inherited from interface org.keycloak.models.map.common.ExpirableEntity
getExpiration, setExpiration
-
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntity
clearUpdatedFlag, isUpdated
-
-
-
-
Method Detail
-
getTimestamp
Long getTimestamp()
Returns a point in time (timestamp in milliseconds since The Epoch) when the event was created.- Returns:
- a timestamp in milliseconds since The Epoch or
null
when the time is unknown
-
setTimestamp
void setTimestamp(Long timestamp)
Sets a point in the (timestamp in milliseconds since The Epoch) when this entity was created.- Parameters:
timestamp
- a timestamp in milliseconds since The Epoch ornull
when the time is unknown
-
getRealmId
String getRealmId()
-
setRealmId
void setRealmId(String realmId)
-
getOperationType
OperationType getOperationType()
-
setOperationType
void setOperationType(OperationType operationType)
-
getResourcePath
String getResourcePath()
-
setResourcePath
void setResourcePath(String resourcePath)
-
getRepresentation
String getRepresentation()
-
setRepresentation
void setRepresentation(String representation)
-
getError
String getError()
-
setError
void setError(String error)
-
getResourceType
String getResourceType()
-
setResourceType
void setResourceType(String resourceType)
-
getAuthRealmId
String getAuthRealmId()
-
setAuthRealmId
void setAuthRealmId(String realmId)
-
getAuthClientId
String getAuthClientId()
-
setAuthClientId
void setAuthClientId(String clientId)
-
getAuthUserId
String getAuthUserId()
-
setAuthUserId
void setAuthUserId(String userId)
-
getAuthIpAddress
String getAuthIpAddress()
-
setAuthIpAddress
void setAuthIpAddress(String ipAddress)
-
-