@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 () {...}
}