org.jboss.seam.annotations
Annotation Type Transactional


@Target(value={TYPE,METHOD})
@Retention(value=RUNTIME)
@Documented
@Inherited
public @interface Transactional

Specifies that the transaction propagation for a JavaBean component or method of a JavaBean component. JavaBean components have @Transactional(SUPPORTS) behavior if no @Transactional annotation is specified.

Author:
Gavin King

Optional Element Summary
 TransactionPropagationType value
          The transaction propagation type.
 

value

public abstract TransactionPropagationType value
The transaction propagation type.

Returns:
REQUIRED by default
Default:
REQUIRED