3.5.5.2. Specifying Transaction Attributes

@TransactionAttribute (NOT_SUPPORTED)
@Stateful
public class MyBean implements MyBeanInterface
{
  @TransactionAttribute (REQUIRES_NEW)
  public void methodOne () {...}

  @TransactionAttribute (REQUIRED)
  public void methodTwo () {...}

  public void methodThree () {...}

  public void methodFour () {...}
}