Uses of Class
com.blazebit.persistence.view.ViewTransition
Package | Description |
---|---|
com.blazebit.persistence.view |
Entity-View extension for the Blaze-Persistence API.
|
com.blazebit.persistence.view.metamodel |
Entity-View extension metamodel.
|
com.blazebit.persistence.view.spi |
SPI for implementers of the Blaze-Persistence Entity-View extension.
|
-
Uses of ViewTransition in com.blazebit.persistence.view
Methods in com.blazebit.persistence.view that return ViewTransition Modifier and Type Method Description ViewTransition[]
transitions()
The view transitions to handle by this listener.ViewTransition[]
transitions()
The view transitions to handle by this listener.static ViewTransition
ViewTransition. valueOf(String name)
Returns the enum constant of this type with the specified name.static ViewTransition[]
ViewTransition. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.blazebit.persistence.view with parameters of type ViewTransition Modifier and Type Method Description void
ViewTransitionListener. call(T view, ViewTransition transition)
A callback that is invoked for a view.void
PostCommitListener. postCommit(EntityViewManager entityViewManager, javax.persistence.EntityManager entityManager, T view, ViewTransition transition)
A callback that is invoked after the flush for given view was committed.void
PostRollbackListener. postRollback(EntityViewManager entityViewManager, javax.persistence.EntityManager entityManager, T view, ViewTransition transition)
A callback that is invoked after the flush for given view was rolled back.Method parameters in com.blazebit.persistence.view with type arguments of type ViewTransition Modifier and Type Method Description <T, E> FlushOperationBuilder
FlushOperationBuilder. onPostCommit(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, PostCommitListener<T> listener)
Registers the given listener to the current flush operation.<T, E> FlushOperationBuilder
FlushOperationBuilder. onPostCommit(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, ViewListener<T> listener)
Registers the given listener to the current flush operation.<T, E> FlushOperationBuilder
FlushOperationBuilder. onPostCommit(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, ViewTransitionListener<T> listener)
Registers the given listener to the current flush operation.<T> FlushOperationBuilder
FlushOperationBuilder. onPostCommit(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, PostCommitListener<T> listener)
Registers the given listener to the current flush operation.<T> FlushOperationBuilder
FlushOperationBuilder. onPostCommit(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, ViewListener<T> listener)
Registers the given listener to the current flush operation.<T> FlushOperationBuilder
FlushOperationBuilder. onPostCommit(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, ViewTransitionListener<T> listener)
Registers the given listener to the current flush operation.FlushOperationBuilder
FlushOperationBuilder. onPostCommit(Set<ViewTransition> viewTransitions, PostCommitListener<?> listener)
Registers the given listener to the current flush operation.<T, E> FlushOperationBuilder
FlushOperationBuilder. onPostRollback(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, PostRollbackListener<T> listener)
Registers the given listener to the current flush operation.<T, E> FlushOperationBuilder
FlushOperationBuilder. onPostRollback(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, ViewListener<T> listener)
Registers the given listener to the current flush operation.<T, E> FlushOperationBuilder
FlushOperationBuilder. onPostRollback(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, ViewTransitionListener<T> listener)
Registers the given listener to the current flush operation.<T> FlushOperationBuilder
FlushOperationBuilder. onPostRollback(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, PostRollbackListener<T> listener)
Registers the given listener to the current flush operation.<T> FlushOperationBuilder
FlushOperationBuilder. onPostRollback(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, ViewListener<T> listener)
Registers the given listener to the current flush operation.<T> FlushOperationBuilder
FlushOperationBuilder. onPostRollback(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, ViewTransitionListener<T> listener)
Registers the given listener to the current flush operation.FlushOperationBuilder
FlushOperationBuilder. onPostRollback(Set<ViewTransition> viewTransitions, PostRollbackListener<?> listener)
Registers the given listener to the current flush operation. -
Uses of ViewTransition in com.blazebit.persistence.view.metamodel
Methods in com.blazebit.persistence.view.metamodel that return types with arguments of type ViewTransition Modifier and Type Method Description Set<ViewTransition>
ManagedViewType. getPostCommitTransitions()
Returns the post commit transitions.Set<ViewTransition>
ManagedViewType. getPostRollbackTransitions()
Returns the post rollback transitions. -
Uses of ViewTransition in com.blazebit.persistence.view.spi
Methods in com.blazebit.persistence.view.spi that return ViewTransition Modifier and Type Method Description ViewTransition[]
EntityViewMapping. getPostCommitTransitions()
Returns the post commit view transitions ornull
if there is none.ViewTransition[]
EntityViewMapping. getPostRollbackTransitions()
Returns the post rollback view transitions ornull
if there is none.Methods in com.blazebit.persistence.view.spi with parameters of type ViewTransition Modifier and Type Method Description void
EntityViewMapping. setPostCommitTransitions(ViewTransition[] viewTransitions)
Sets the post commit view transitions.void
EntityViewMapping. setPostRollbackTransitions(ViewTransition[] viewTransitions)
Sets the post rollback view transitions.