View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  
18  package org.apache.commons.dbcp2.transaction;
19  
20  import javax.transaction.HeuristicMixedException;
21  import javax.transaction.HeuristicRollbackException;
22  import javax.transaction.RollbackException;
23  import javax.transaction.Synchronization;
24  import javax.transaction.SystemException;
25  import javax.transaction.Transaction;
26  import javax.transaction.xa.XAResource;
27  
28  /**
29   * A Transaction adapter.
30   */
31  public class TransactionAdapter implements Transaction {
32  
33      @Override
34      public void commit() throws HeuristicMixedException, HeuristicRollbackException, RollbackException,
35          SecurityException, SystemException {
36          // Noop
37      }
38  
39      @Override
40      public boolean delistResource(final XAResource arg0, final int arg1) throws IllegalStateException, SystemException {
41          return false;
42      }
43  
44      @Override
45      public boolean enlistResource(final XAResource arg0) throws IllegalStateException, RollbackException, SystemException {
46          return false;
47      }
48  
49      @Override
50      public int getStatus() throws SystemException {
51          return 0;
52      }
53  
54      @Override
55      public void registerSynchronization(final Synchronization arg0)
56          throws IllegalStateException, RollbackException, SystemException {
57          // Noop
58      }
59  
60      @Override
61      public void rollback() throws IllegalStateException, SystemException {
62          // Noop
63      }
64  
65      @Override
66      public void setRollbackOnly() throws IllegalStateException, SystemException {
67          // Noop
68      }
69  
70  }