1 21 22 package org.apache.derby.iapi.jdbc; 23 24 import org.apache.derby.iapi.services.context.ContextService; 25 import org.apache.derby.iapi.store.access.xa.XAResourceManager; 26 import org.apache.derby.iapi.store.access.xa.XAXactId; 27 import org.apache.derby.iapi.error.StandardException; 28 29 363 public interface ResourceAdapter { 364 365 374 376 383 385 389 391 395 XAResourceManager getXAResourceManager(); 396 397 400 402 405 boolean isActive(); 406 407 public Object findConnection(XAXactId xid); 408 409 public boolean addConnection(XAXactId xid, Object conn); 410 411 public Object removeConnection(XAXactId xid); 412 413 } 414 | Popular Tags |