Package org.keycloak.models.map.events
Class MapAuthEventEntityFieldDelegate
- java.lang.Object
-
- org.keycloak.models.map.common.UpdatableEntity.Impl
-
- org.keycloak.models.map.events.MapAuthEventEntity.AbstractAuthEventEntity
-
- org.keycloak.models.map.events.MapAuthEventEntityFieldDelegate
-
- All Implemented Interfaces:
AbstractEntity
,HasEntityFieldDelegate<MapAuthEventEntity>
,ExpirableEntity
,UpdatableEntity
,MapAuthEventEntity
@Generated("org.keycloak.models.map.processor.GenerateEntityImplementationsProcessor") public class MapAuthEventEntityFieldDelegate extends MapAuthEventEntity.AbstractAuthEventEntity implements MapAuthEventEntity, HasEntityFieldDelegate<MapAuthEventEntity>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.events.MapAuthEventEntity
MapAuthEventEntity.AbstractAuthEventEntity
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Field Summary
-
Fields inherited from class org.keycloak.models.map.common.UpdatableEntity.Impl
updated
-
-
Constructor Summary
Constructors Constructor Description MapAuthEventEntityFieldDelegate(EntityFieldDelegate<MapAuthEventEntity> entityFieldDelegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearUpdatedFlag()
An optional operation clearing the updated flag.String
getClientId()
Map<String,String>
getDetails()
EntityFieldDelegate<MapAuthEventEntity>
getEntityFieldDelegate()
String
getError()
Long
getExpiration()
Returns a point in the time (timestamp in milliseconds since The Epoch) when this entity expires.String
getId()
String
getIpAddress()
String
getRealmId()
String
getSessionId()
Long
getTimestamp()
Returns a point in time (timestamp in milliseconds since The Epoch) when the event entity was created.EventType
getType()
String
getUserId()
boolean
isUpdated()
Flag signalizing that any of the setters has been meaningfully used.void
setClientId(String p0)
void
setDetails(Map<String,String> p0)
void
setError(String p0)
void
setExpiration(Long p0)
Sets a point in the time (timestamp in milliseconds since The Epoch) when this entity expires.void
setId(String p0)
void
setIpAddress(String p0)
void
setRealmId(String p0)
void
setSessionId(String p0)
void
setTimestamp(Long p0)
Sets a point in the (timestamp in milliseconds since The Epoch) when the event entity was created.void
setType(EventType p0)
void
setUserId(String p0)
-
-
-
Constructor Detail
-
MapAuthEventEntityFieldDelegate
public MapAuthEventEntityFieldDelegate(EntityFieldDelegate<MapAuthEventEntity> entityFieldDelegate)
-
-
Method Detail
-
getEntityFieldDelegate
public EntityFieldDelegate<MapAuthEventEntity> getEntityFieldDelegate()
- Specified by:
getEntityFieldDelegate
in interfaceHasEntityFieldDelegate<MapAuthEventEntity>
-
isUpdated
public boolean isUpdated()
Description copied from interface:UpdatableEntity
Flag signalizing that any of the setters has been meaningfully used.- Specified by:
isUpdated
in interfaceUpdatableEntity
- Overrides:
isUpdated
in classUpdatableEntity.Impl
- Returns:
-
clearUpdatedFlag
public void clearUpdatedFlag()
Description copied from interface:UpdatableEntity
An optional operation clearing the updated flag. Right after using this method, theUpdatableEntity.isUpdated()
would returnfalse
.- Specified by:
clearUpdatedFlag
in interfaceUpdatableEntity
- Overrides:
clearUpdatedFlag
in classUpdatableEntity.Impl
-
getId
public String getId()
- Specified by:
getId
in interfaceAbstractEntity
- Overrides:
getId
in classMapAuthEventEntity.AbstractAuthEventEntity
-
setId
public void setId(String p0)
- Specified by:
setId
in interfaceAbstractEntity
- Overrides:
setId
in classMapAuthEventEntity.AbstractAuthEventEntity
-
getExpiration
public Long getExpiration()
Description copied from interface:ExpirableEntity
Returns a point in the time (timestamp in milliseconds since The Epoch) when this entity expires.- Specified by:
getExpiration
in interfaceExpirableEntity
- Returns:
- a timestamp in milliseconds since The Epoch or
null
if this entity never expires or expiration is not known.
-
setExpiration
public void setExpiration(Long p0)
Description copied from interface:ExpirableEntity
Sets a point in the time (timestamp in milliseconds since The Epoch) when this entity expires.- Specified by:
setExpiration
in interfaceExpirableEntity
- Parameters:
p0
- a timestamp in milliseconds since The Epoch ornull
if this entity never expires.
-
getTimestamp
public Long getTimestamp()
Description copied from interface:MapAuthEventEntity
Returns a point in time (timestamp in milliseconds since The Epoch) when the event entity was created.- Specified by:
getTimestamp
in interfaceMapAuthEventEntity
- Returns:
- a timestamp in milliseconds since The Epoch or
null
when the time is unknown
-
setTimestamp
public void setTimestamp(Long p0)
Description copied from interface:MapAuthEventEntity
Sets a point in the (timestamp in milliseconds since The Epoch) when the event entity was created.- Specified by:
setTimestamp
in interfaceMapAuthEventEntity
- Parameters:
p0
- a timestamp in milliseconds since The Epoch ornull
when the time is unknown
-
getType
public EventType getType()
- Specified by:
getType
in interfaceMapAuthEventEntity
-
setType
public void setType(EventType p0)
- Specified by:
setType
in interfaceMapAuthEventEntity
-
getRealmId
public String getRealmId()
- Specified by:
getRealmId
in interfaceMapAuthEventEntity
-
setRealmId
public void setRealmId(String p0)
- Specified by:
setRealmId
in interfaceMapAuthEventEntity
-
getClientId
public String getClientId()
- Specified by:
getClientId
in interfaceMapAuthEventEntity
-
setClientId
public void setClientId(String p0)
- Specified by:
setClientId
in interfaceMapAuthEventEntity
-
getUserId
public String getUserId()
- Specified by:
getUserId
in interfaceMapAuthEventEntity
-
setUserId
public void setUserId(String p0)
- Specified by:
setUserId
in interfaceMapAuthEventEntity
-
getSessionId
public String getSessionId()
- Specified by:
getSessionId
in interfaceMapAuthEventEntity
-
setSessionId
public void setSessionId(String p0)
- Specified by:
setSessionId
in interfaceMapAuthEventEntity
-
getIpAddress
public String getIpAddress()
- Specified by:
getIpAddress
in interfaceMapAuthEventEntity
-
setIpAddress
public void setIpAddress(String p0)
- Specified by:
setIpAddress
in interfaceMapAuthEventEntity
-
getError
public String getError()
- Specified by:
getError
in interfaceMapAuthEventEntity
-
setError
public void setError(String p0)
- Specified by:
setError
in interfaceMapAuthEventEntity
-
getDetails
public Map<String,String> getDetails()
- Specified by:
getDetails
in interfaceMapAuthEventEntity
-
setDetails
public void setDetails(Map<String,String> p0)
- Specified by:
setDetails
in interfaceMapAuthEventEntity
-
-