1 64 65 package com.jcorporate.expresso.core.dataobjects.jdbc; 66 67 import javax.transaction.UserTransaction ; 68 69 74 75 public class DefaultTransaction implements UserTransaction { 76 77 78 public DefaultTransaction() { 79 } 80 81 public void begin() throws javax.transaction.NotSupportedException , javax.transaction.SystemException { 82 83 throw new java.lang.UnsupportedOperationException ("Method begin() not yet implemented."); 84 } 85 86 public void commit() throws javax.transaction.RollbackException , javax.transaction.HeuristicMixedException , 87 javax.transaction.HeuristicRollbackException , java.lang.SecurityException , java.lang.IllegalStateException , 88 javax.transaction.SystemException { 89 90 throw new java.lang.UnsupportedOperationException ("Method commit() not yet implemented."); 91 } 92 93 public void rollback() throws java.lang.IllegalStateException , java.lang.SecurityException , 94 javax.transaction.SystemException { 95 96 throw new java.lang.UnsupportedOperationException ("Method rollback() not yet implemented."); 97 } 98 99 public void setRollbackOnly() throws java.lang.IllegalStateException , javax.transaction.SystemException { 100 101 throw new java.lang.UnsupportedOperationException ("Method setRollbackOnly() not yet implemented."); 102 } 103 104 public int getStatus() throws javax.transaction.SystemException { 105 106 throw new java.lang.UnsupportedOperationException ("Method getStatus() not yet implemented."); 107 } 108 109 public void setTransactionTimeout(int parm1) throws javax.transaction.SystemException { 110 111 throw new java.lang.UnsupportedOperationException ("Method setTransactionTimeout() not yet implemented."); 112 } 113 } | Popular Tags |