Package org.keycloak.models.map.events
Interface MapAuthEventEntity
- 
- All Superinterfaces:
- AbstractEntity,- ExpirableEntity,- UpdatableEntity
 - All Known Implementing Classes:
- HotRodAuthEventEntity.AbstractHotRodAuthEventEntityDelegate,- HotRodAuthEventEntityDelegate,- JpaAuthEventEntity,- JpaAuthEventMetadata,- MapAuthEventEntity.AbstractAuthEventEntity,- MapAuthEventEntityDelegate,- MapAuthEventEntityFieldDelegate,- MapAuthEventEntityImpl,- MapAuthEventEntityImpl.Empty
 
 public interface MapAuthEventEntity extends UpdatableEntity, AbstractEntity, ExpirableEntity 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classMapAuthEventEntity.AbstractAuthEventEntity- 
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 StringgetClientId()Map<String,String>getDetails()StringgetError()StringgetIpAddress()StringgetRealmId()StringgetSessionId()LonggetTimestamp()Returns a point in time (timestamp in milliseconds since The Epoch) when the event entity was created.EventTypegetType()StringgetUserId()voidsetClientId(String clientId)voidsetDetails(Map<String,String> details)voidsetError(String error)voidsetIpAddress(String ipAddress)voidsetRealmId(String realmId)voidsetSessionId(String sessionId)voidsetTimestamp(Long timestamp)Sets a point in the (timestamp in milliseconds since The Epoch) when the event entity was created.voidsetType(EventType type)voidsetUserId(String userId)- 
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 entity 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 the event entity was created.- Parameters:
- timestamp- a timestamp in milliseconds since The Epoch or- nullwhen the time is unknown
 
 - 
getTypeEventType getType() 
 - 
setTypevoid setType(EventType type) 
 - 
getRealmIdString getRealmId() 
 - 
setRealmIdvoid setRealmId(String realmId) 
 - 
getClientIdString getClientId() 
 - 
setClientIdvoid setClientId(String clientId) 
 - 
getUserIdString getUserId() 
 - 
setUserIdvoid setUserId(String userId) 
 - 
getSessionIdString getSessionId() 
 - 
setSessionIdvoid setSessionId(String sessionId) 
 - 
getIpAddressString getIpAddress() 
 - 
setIpAddressvoid setIpAddress(String ipAddress) 
 - 
getErrorString getError() 
 - 
setErrorvoid setError(String error) 
 
- 
 
-