public enum Propagation extends Enum<Propagation>
Enum Constant and Description |
---|
MANDATORY
Support a current transaction, throw an exception if none exists.
|
NESTED
Execute within a nested transaction if a current transaction exists,
behave like PROPAGATION_REQUIRED else.
|
NEVER
Execute non-transactionally, throw an exception if a transaction exists.
|
NOT_SUPPORTED
Execute non-transactionally, suspend the current transaction if one exists.
|
REQUIRED
Support a current transaction, create a new one if none exists.
|
REQUIRES_NEW
Create a new transaction, suspend the current transaction if one exists.
|
SUPPORTS
Support a current transaction, execute non-transactionally if none exists.
|
Modifier and Type | Method and Description |
---|---|
static Propagation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Propagation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Propagation MANDATORY
public static final Propagation REQUIRED
This is the default setting of a transaction annotation.
public static final Propagation REQUIRES_NEW
public static final Propagation SUPPORTS
public static final Propagation NOT_SUPPORTED
public static final Propagation NEVER
public static final Propagation NESTED
public static Propagation[] values()
for (Propagation c : Propagation.values()) System.out.println(c);
public static Propagation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2013-2018–2019 SeedStack. All rights reserved.