tx-control-providers/jdbc/tx-control-provider-jdbc-xa/src/main/java/org/apache/aries/tx/control/jdbc/xa/impl/RecoverableXAResourceImpl.java [89:131]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		@Override
		public void close() throws Exception {
			conn.close();
		}

		public void commit(Xid arg0, boolean arg1) throws XAException {
			resource.commit(arg0, arg1);
		}

		public void end(Xid arg0, int arg1) throws XAException {
			resource.end(arg0, arg1);
		}

		public void forget(Xid arg0) throws XAException {
			resource.forget(arg0);
		}

		public int getTransactionTimeout() throws XAException {
			return resource.getTransactionTimeout();
		}

		public boolean isSameRM(XAResource arg0) throws XAException {
			return resource.isSameRM(arg0);
		}

		public int prepare(Xid arg0) throws XAException {
			return resource.prepare(arg0);
		}

		public Xid[] recover(int arg0) throws XAException {
			return resource.recover(arg0);
		}

		public void rollback(Xid arg0) throws XAException {
			resource.rollback(arg0);
		}

		public boolean setTransactionTimeout(int arg0) throws XAException {
			return resource.setTransactionTimeout(arg0);
		}

		public void start(Xid arg0, int arg1) throws XAException {
			resource.start(arg0, arg1);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tx-control-providers/jpa/tx-control-provider-jpa-xa/src/main/java/org/apache/aries/tx/control/jpa/xa/impl/RecoverableXAResourceImpl.java [90:132]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		@Override
		public void close() throws Exception {
			conn.close();
		}

		public void commit(Xid arg0, boolean arg1) throws XAException {
			resource.commit(arg0, arg1);
		}

		public void end(Xid arg0, int arg1) throws XAException {
			resource.end(arg0, arg1);
		}

		public void forget(Xid arg0) throws XAException {
			resource.forget(arg0);
		}

		public int getTransactionTimeout() throws XAException {
			return resource.getTransactionTimeout();
		}

		public boolean isSameRM(XAResource arg0) throws XAException {
			return resource.isSameRM(arg0);
		}

		public int prepare(Xid arg0) throws XAException {
			return resource.prepare(arg0);
		}

		public Xid[] recover(int arg0) throws XAException {
			return resource.recover(arg0);
		}

		public void rollback(Xid arg0) throws XAException {
			resource.rollback(arg0);
		}

		public boolean setTransactionTimeout(int arg0) throws XAException {
			return resource.setTransactionTimeout(arg0);
		}

		public void start(Xid arg0, int arg1) throws XAException {
			resource.start(arg0, arg1);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



