|
|
|
|
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
|
|
|
|
/* |
|
|
|
|
* Copyright 2002-2015 the original author or authors. |
|
|
|
|
* Copyright 2002-2018 the original author or authors. |
|
|
|
|
* |
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
|
@ -62,7 +62,7 @@ public enum Propagation {
@@ -62,7 +62,7 @@ public enum Propagation {
|
|
|
|
|
* on all transaction managers. This in particular applies to |
|
|
|
|
* {@link org.springframework.transaction.jta.JtaTransactionManager}, |
|
|
|
|
* which requires the {@code javax.transaction.TransactionManager} to be |
|
|
|
|
* made available it to it (which is server-specific in standard Java EE). |
|
|
|
|
* made available to it (which is server-specific in standard Java EE). |
|
|
|
|
* @see org.springframework.transaction.jta.JtaTransactionManager#setTransactionManager |
|
|
|
|
*/ |
|
|
|
|
REQUIRES_NEW(TransactionDefinition.PROPAGATION_REQUIRES_NEW), |
|
|
|
|
@ -74,7 +74,7 @@ public enum Propagation {
@@ -74,7 +74,7 @@ public enum Propagation {
|
|
|
|
|
* on all transaction managers. This in particular applies to |
|
|
|
|
* {@link org.springframework.transaction.jta.JtaTransactionManager}, |
|
|
|
|
* which requires the {@code javax.transaction.TransactionManager} to be |
|
|
|
|
* made available it to it (which is server-specific in standard Java EE). |
|
|
|
|
* made available to it (which is server-specific in standard Java EE). |
|
|
|
|
* @see org.springframework.transaction.jta.JtaTransactionManager#setTransactionManager |
|
|
|
|
*/ |
|
|
|
|
NOT_SUPPORTED(TransactionDefinition.PROPAGATION_NOT_SUPPORTED), |
|
|
|
|
@ -100,8 +100,12 @@ public enum Propagation {
@@ -100,8 +100,12 @@ public enum Propagation {
|
|
|
|
|
private final int value; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Propagation(int value) { this.value = value; } |
|
|
|
|
Propagation(int value) { |
|
|
|
|
this.value = value; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int value() { return this.value; } |
|
|
|
|
public int value() { |
|
|
|
|
return this.value; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|