TransactionalEntity

public abstract class TransactionalEntity<I, S extends EntityState, B extends ValidatingBuilder<S>> extends AbstractEntity<I, S>

A base for entities, perform transactions events.

Defines a transaction-based mechanism for state, version, and lifecycle flags update.

Exposes validating builder for the state as the only way to modify the state from the descendants.

Inheritors

Constructors

Link copied to clipboard
protected void TransactionalEntity()
Creates a new instance.
protected void TransactionalEntity(I id)
Creates a new instance.

Functions

Link copied to clipboard
protected B builder()
Obtains the instance of the state builder.
Link copied to clipboard
public final boolean changed()
Determines whether the state of this entity or its lifecycle flags have been modified since this entity instance creation.
Link copied to clipboard
protected void clearRecentHistory()
Link copied to clipboard
public final LifecycleFlags getLifecycleFlags()
Obtains the current state of the entity lifecycle flags.
Link copied to clipboard
Provides error message text for the case of not having an active transaction when a state modification call is made.
Link copied to clipboard
Obtains recent history of events of this entity.
Link copied to clipboard
protected void remember(Iterable<Event> events)
Adds events to the recent history.
Link copied to clipboard
protected final void setArchived(boolean archived)
Sets archived} status flag to the passed value.
Link copied to clipboard
protected final void setDeleted(boolean deleted)
Sets deleted} status flag to the passed value.
Link copied to clipboard
protected final void setInitialState(S initialState, Version version)
Sets an initial state for the entity.
Link copied to clipboard
protected Transaction<I, ? extends TransactionalEntity<I, S, B>, S, B> tx()
Obtains the transaction used for modifying the entity.

Inherited functions

Link copied to clipboard
public void afterInvoke(HandlerMethod<? extends Object, ? extends Object, ? extends Object, ? extends Object> method)
A callback for a handler method invocation end.
Link copied to clipboard
public final Api at(Level logLevel)
Obtains a new fluent logging API at the given level.
Link copied to clipboard
public void beforeInvoke(HandlerMethod<? extends Object, ? extends Object, ? extends Object, ? extends Object> method)
A callback for a handler method invocation start.
Link copied to clipboard
protected final List<ConstraintViolation> checkEntityState(S newState)
Verifies the new entity state and returns ConstraintViolations, if any.
Link copied to clipboard
protected void checkNotArchived()
Ensures that the entity is not marked as archived.
Link copied to clipboard
protected void checkNotDeleted()
Ensures that the entity is not marked as deleted.
Link copied to clipboard
protected final S defaultState()
Obtains the default state of the entity.
Link copied to clipboard
protected void ensureAccessToState()
Ensures that the callee is allowed to access Entity's state() method.
Link copied to clipboard
public boolean equals(Object o)
Link copied to clipboard
public int hashCode()
Link copied to clipboard
public I id()
Obtains the identifier of the entity.
Link copied to clipboard
public String idAsString()
Obtains ID of the entity in the string form.
Link copied to clipboard
public boolean isActive()
Verifies if any of the lifecycle attributes is set.
Link copied to clipboard
public final boolean isArchived()
Tests whether the entity is marked as archived.
Link copied to clipboard
public final boolean isDeleted()
Tests whether the entity is marked as deleted.
Link copied to clipboard
public LifecycleFlags lifecycleFlags()
Obtains current lifecycle flags.
Link copied to clipboard
public boolean lifecycleFlagsChanged()
Tells whether lifecycle flags of the entity changed since its initialization.
Link copied to clipboard
protected EntityClass<? extends Object> modelClass()
Obtains the model class.
Link copied to clipboard
public final S state()
Obtains the state of the entity.
Link copied to clipboard
protected EntityClass<? extends Object> thisClass()
Obtains model class for this entity.
Link copied to clipboard
public String toString()
Link copied to clipboard
public Version version()
Obtains the version of the entity.
Link copied to clipboard
protected int versionNumber()
Obtains the version number of the entity.
Link copied to clipboard
public Timestamp whenModified()
Obtains timestamp of the entity version.