1 23 24 package com.sun.enterprise.connectors; 25 26 import com.sun.enterprise.deployment.ConnectorDescriptor; 27 import com.sun.enterprise.repository.*; 28 import javax.resource.spi.ManagedConnectionFactory ; 29 30 31 38 39 40 public interface ActiveResourceAdapter { 41 42 47 48 public void setup() throws ConnectorRuntimeException; 49 50 53 54 public void destroy(); 55 56 59 60 public ConnectorDescriptor getDescriptor(); 61 62 70 71 public ManagedConnectionFactory createManagedConnectionFactory 72 (ConnectorConnectionPool cpr, ClassLoader loader); 73 74 78 public ClassLoader getClassLoader(); 79 80 85 public String getModuleName(); 86 } 87 | Popular Tags |