ozeigermann    2004/07/12 07:22:27

  Added:       transaction/src/java/org/apache/commons/transaction/util/xa
                        AbstractTransactionalResource.java
  Log:
  Added abstract implementation of TransactionalResource
  
  Revision  Changes    Path
  1.1                  
jakarta-commons-sandbox/transaction/src/java/org/apache/commons/transaction/util/xa/AbstractTransactionalResource.java
  
  Index: AbstractTransactionalResource.java
  ===================================================================
  /*
   * $Header: 
/home/cvs/jakarta-commons-sandbox/transaction/src/java/org/apache/commons/transaction/util/xa/AbstractTransactionalResource.java,v
 1.1 2004/07/12 14:22:27 ozeigermann Exp $
   * $Revision: 1.1 $
   * $Date: 2004/07/12 14:22:27 $
   *
   * ====================================================================
   *
   * Copyright 2004 The Apache Software Foundation 
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *     http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   */
  
  package org.apache.commons.transaction.util.xa;
  
  import javax.transaction.Status;
  import javax.transaction.xa.XAException;
  import javax.transaction.xa.XAResource;
  import javax.transaction.xa.Xid;
  
  /**
   * Rudimentary abstract implementation of [EMAIL PROTECTED] TransactionalResource} 
for specific implementations to base upon.
   */
  public abstract class AbstractTransactionalResource implements 
TransactionalResource, Status {
      protected Xid xid;
  
      protected int status;
  
      public AbstractTransactionalResource(Xid xid) {
          this.xid = xid;
          status = STATUS_ACTIVE;
      }
  
      public void commit() throws XAException {
      }
  
      public void rollback() throws XAException {
      }
  
      public int prepare() throws XAException {
          // no check possible
          return XAResource.XA_OK;
      }
  
      public void close() throws XAException {
      }
  
      public int getStatus() {
          return status;
      }
  
      public void setStatus(int status) {
          this.status = status;
      }
  
      public Xid getXid() {
          return xid;
      }
  }
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to