Added default values.

This commit is contained in:
Mark Fisher
2008-07-10 00:55:05 +00:00
parent 92746ebed6
commit 882cba8a07

View File

@@ -43,13 +43,13 @@ public class TransactionInterceptor extends EndpointInterceptorAdapter implement
private volatile TransactionTemplate transactionTemplate;
private volatile String propagationBehaviorName;
private volatile String propagationBehaviorName = "PROPAGATION_REQUIRED";
private volatile String isolationLevelName;
private volatile String isolationLevelName = "ISOLATION_DEFAULT";
private volatile int timeout;
private volatile int timeout = -1;
private volatile boolean readOnly;
private volatile boolean readOnly = false;
public TransactionInterceptor(PlatformTransactionManager transactionManager) {