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 classMapAdminEventEntity.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 StringgetAuthClientId()StringgetAuthIpAddress()StringgetAuthRealmId()StringgetAuthUserId()StringgetError()OperationTypegetOperationType()StringgetRealmId()StringgetRepresentation()StringgetResourcePath()StringgetResourceType()LonggetTimestamp()Returns a point in time (timestamp in milliseconds since The Epoch) when the event was created.voidsetAuthClientId(String clientId)voidsetAuthIpAddress(String ipAddress)voidsetAuthRealmId(String realmId)voidsetAuthUserId(String userId)voidsetError(String error)voidsetOperationType(OperationType operationType)voidsetRealmId(String realmId)voidsetRepresentation(String representation)voidsetResourcePath(String resourcePath)voidsetResourceType(String resourceType)voidsetTimestamp(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
nullwhen 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 ornullwhen 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)
-
-