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 SummaryNested Classes Modifier and Type Interface Description static classMapAdminEventEntity.AbstractAdminEventEntity- 
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntityUpdatableEntity.Impl
 
- 
 - 
Method SummaryAll 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.AbstractEntitygetId, setId
 - 
Methods inherited from interface org.keycloak.models.map.common.ExpirableEntitygetExpiration, setExpiration
 - 
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntityclearUpdatedFlag, isUpdated
 
- 
 
- 
- 
- 
Method Detail- 
getTimestampLong 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
 
 - 
setTimestampvoid 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 or- nullwhen the time is unknown
 
 - 
getRealmIdString getRealmId() 
 - 
setRealmIdvoid setRealmId(String realmId) 
 - 
getOperationTypeOperationType getOperationType() 
 - 
setOperationTypevoid setOperationType(OperationType operationType) 
 - 
getResourcePathString getResourcePath() 
 - 
setResourcePathvoid setResourcePath(String resourcePath) 
 - 
getRepresentationString getRepresentation() 
 - 
setRepresentationvoid setRepresentation(String representation) 
 - 
getErrorString getError() 
 - 
setErrorvoid setError(String error) 
 - 
getResourceTypeString getResourceType() 
 - 
setResourceTypevoid setResourceType(String resourceType) 
 - 
getAuthRealmIdString getAuthRealmId() 
 - 
setAuthRealmIdvoid setAuthRealmId(String realmId) 
 - 
getAuthClientIdString getAuthClientId() 
 - 
setAuthClientIdvoid setAuthClientId(String clientId) 
 - 
getAuthUserIdString getAuthUserId() 
 - 
setAuthUserIdvoid setAuthUserId(String userId) 
 - 
getAuthIpAddressString getAuthIpAddress() 
 - 
setAuthIpAddressvoid setAuthIpAddress(String ipAddress) 
 
- 
 
-