|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TransactionPropagation>
org.jboss.seam.transaction.TransactionPropagation
public enum TransactionPropagation
Enum Constant Summary | |
---|---|
MANDATORY
Requires a transaction to be active. |
|
NEVER
Requires no transaction to be active. |
|
REQUIRED
A transaction will be started if one is not currently active. |
|
SUPPORTS
A transaction will not be started if there is not one currently active, however this method supports running inside an existing transaction |
Method Summary | |
---|---|
boolean |
isNewTransactionRequired(boolean transactionActive)
|
static TransactionPropagation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TransactionPropagation[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final TransactionPropagation REQUIRED
public static final TransactionPropagation SUPPORTS
public static final TransactionPropagation MANDATORY
IllegalStateException
is thrown
public static final TransactionPropagation NEVER
IllegalStateException
is thrown
Method Detail |
---|
public static TransactionPropagation[] values()
for (TransactionPropagation c : TransactionPropagation.values()) System.out.println(c);
public static TransactionPropagation valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic boolean isNewTransactionRequired(boolean transactionActive)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |