/[classpath]/classpath/javax/transaction/UserTransaction.java
ViewVC logotype

Diff of /classpath/javax/transaction/UserTransaction.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by mark, Tue Nov 26 22:45:56 2002 UTC revision 1.2 by mkoch, Sun Oct 12 16:50:21 2003 UTC
# Line 45  package javax.transaction; Line 45  package javax.transaction;
45    
46  public interface UserTransaction  public interface UserTransaction
47  {  {
48    public void begin() throws NotSupportedException, SystemException;    void begin() throws NotSupportedException, SystemException;
49    
50    public void commit()    void commit()
51      throws RollbackException, HeuristicMixedException,      throws RollbackException, HeuristicMixedException,
52        HeuristicRollbackException, SecurityException,        HeuristicRollbackException, SecurityException,
53        IllegalStateException, SystemException;        IllegalStateException, SystemException;
54    
55    public void rollback()    void rollback()
56      throws IllegalStateException, SecurityException, SystemException;      throws IllegalStateException, SecurityException, SystemException;
57    
58    public void setRollbackOnly()    void setRollbackOnly()
59      throws IllegalStateException, SystemException;      throws IllegalStateException, SystemException;
60    
61    public int getStatus() throws SystemException;    int getStatus() throws SystemException;
62    
63    public void setTransactionTimeout(int seconds) throws SystemException;    void setTransactionTimeout(int seconds) throws SystemException;
64  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26