diff options
Diffstat (limited to 'libjava/javax/transaction/TransactionManager.java')
-rw-r--r-- | libjava/javax/transaction/TransactionManager.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libjava/javax/transaction/TransactionManager.java b/libjava/javax/transaction/TransactionManager.java index e0501af..0a79bd3 100644 --- a/libjava/javax/transaction/TransactionManager.java +++ b/libjava/javax/transaction/TransactionManager.java @@ -45,28 +45,28 @@ package javax.transaction; public interface TransactionManager { - public void begin() throws NotSupportedException, SystemException; + void begin() throws NotSupportedException, SystemException; - public void commit() + void commit() throws RollbackException, HeuristicMixedException, HeuristicRollbackException, SecurityException, IllegalStateException, SystemException; - public int getStatus() throws SystemException; + int getStatus() throws SystemException; - public Transaction getTransaction() throws SystemException; + Transaction getTransaction() throws SystemException; - public void resume(Transaction tobj) + void resume(Transaction tobj) throws InvalidTransactionException, IllegalStateException, SystemException; - public void rollback() + void rollback() throws IllegalStateException, SecurityException, SystemException; - public void setRollbackOnly() + void setRollbackOnly() throws IllegalStateException, SystemException; - public void setTransactionTimeout(int seconds) throws SystemException; + void setTransactionTimeout(int seconds) throws SystemException; - public Transaction suspend() throws SystemException; + Transaction suspend() throws SystemException; } |