IBM WebSphereTM eXtreme Scale, Release 8.6
API Specification

com.ibm.websphere.projector.annotations
Annotation Type PreInvalidate


@Target(value=METHOD)
@Retention(value=RUNTIME)
public @interface PreInvalidate

Identifies the pre-invalidate callback method which is invoked for an entity before the entity has been invalidated, which includes entities that have been invalidated due to a cascading operation. This method is run on the thread of the EntityManager.invalidate operation.

This annotation may be applied to an entity class method with the signature:
void <METHOD>()

or an entity listener class method with the signature:
void <METHOD>(Object).

The Object argument is the entity instance that the callback method is invoked. It may optionally be declared as the actual entity type. The callback method must not be static or final.

If this callback method throws an unchecked/runtime exception, then any transaction in which this callback is included will be rolled-back.

Since:
WAS XD 6.1.0.3
See Also:
EntityListeners


IBM WebSphereTM eXtreme Scale, Release 8.6
API Specification

© Copyright International Business Machines Corp 2005,2012. All rights reserved.