1 23 24 29 30 31 package com.sun.appserv.management.config; 32 33 import com.sun.appserv.management.base.XTypes; 34 35 36 37 38 39 43 public interface ResourceAdapterConfig extends NamedConfigElement, PropertiesAccess, ObjectType 44 { 45 46 public static final String J2EE_TYPE = XTypes.RESOURCE_ADAPTER_CONFIG; 47 48 String getResourceAdapterName(); 49 50 String getThreadPoolIDs(); 51 52 55 void setThreadPoolIDs( final String threadPoolIDs ); 56 } 57 | Popular Tags |