com.bea.control.annotations
Annotation Type TransactionAttribute


@InterceptorAnnotation(service=com.bea.control.interceptors.TransactionInterceptor.class)
@Documented
@Retention(value=RUNTIME)
@Target(value={METHOD,TYPE})
public @interface TransactionAttribute

The Weblogic transaction annotation for controls, modelled after the EJB 3 transaction annotation. When present on a control method, specifies transactional behaviour for that specific method.

Author:
Copyright (c) 2005 by BEA Systems. All Rights Reserved.

Optional Element Summary
 boolean rollbackOnCheckedException
          When set to true, we will rollback a transaction on checked exception
 TransactionAttributeType value
          Specifies the desired transactional characteristics.
 

value

public abstract TransactionAttributeType value
Specifies the desired transactional characteristics.

Default:
REQUIRED

rollbackOnCheckedException

public abstract boolean rollbackOnCheckedException
When set to true, we will rollback a transaction on checked exception

Default:
false