| TransactionTimeoutConfiguration.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.tm;
import javax.transaction.SystemException;
/**
* The interface to implementated by a transaction manager
* that supports retrieving the current threads transaction timeout
*
* @author <a href="mailto:adrian@jboss.org">Adrian Brock</a>
* @version $Revision: 1.2.6.1 $
*/
public interface TransactionTimeoutConfiguration
{
/**
* Get the transaction timeout.
*
* @return the timeout in seconds associated with this thread
* @throws SystemException for any error
*/
int getTransactionTimeout() throws SystemException;
}
| TransactionTimeoutConfiguration.java |