org.springframework.transaction.interceptor
Class TransactionAttributeEditor

java.lang.Object
  extended byjava.beans.PropertyEditorSupport
      extended byorg.springframework.transaction.interceptor.TransactionAttributeEditor
All Implemented Interfaces:
PropertyEditor

public class TransactionAttributeEditor
extends PropertyEditorSupport

PropertyEditor for TransactionAttribute objects. Takes Strings of form

PROPAGATION_NAME,ISOLATION_NAME,readOnly,timeout_NNNN,+Exception1,-Exception2

where only propagation code is required. For example:

PROPAGATION_MANDATORY,ISOLATION_DEFAULT

The tokens can be in any order. Propagation and isolation codes must use the names of the constants in the TransactionDefinition class. Timeout values are in seconds. If no timeout is specified, the transaction manager will apply a default timeout specific to the particular transaction manager.

A "+" before an exception name substring indicates that transactions should commit even if this exception is thrown; a "-" that they should roll back.

Since:
24-Apr-2003
Author:
Rod Johnson, Juergen Hoeller
See Also:
TransactionDefinition, Constants

Constructor Summary
TransactionAttributeEditor()
           
 
Method Summary
 void setAsText(String s)
          Format is PROPAGATION_NAME,ISOLATION_NAME,readOnly,timeout_NNNN,+Exception1,-Exception2.
 
Methods inherited from class java.beans.PropertyEditorSupport
addPropertyChangeListener, firePropertyChange, getAsText, getCustomEditor, getJavaInitializationString, getTags, getValue, isPaintable, paintValue, removePropertyChangeListener, setValue, supportsCustomEditor
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TransactionAttributeEditor

public TransactionAttributeEditor()
Method Detail

setAsText

public void setAsText(String s)
               throws IllegalArgumentException
Format is PROPAGATION_NAME,ISOLATION_NAME,readOnly,timeout_NNNN,+Exception1,-Exception2. Null or the empty string means that the method is non transactional.

Throws:
IllegalArgumentException
See Also:
PropertyEditor.setAsText(java.lang.String)


Copyright (C) 2003-2004 The Spring Framework Project.