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 42 public interface JNDIResourceConfig extends ResourceConfig 43 { 44 45 public static final String J2EE_TYPE = XTypes.JNDI_RESOURCE_CONFIG; 46 47 48 String getJNDILookupName(); 49 50 void setJNDILookupName( final String jndiLookupName ); 51 52 String getResType(); 53 54 void setResType( final String resType ); 55 56 String getFactoryClass(); 57 58 void setFactoryClass( final String factoryClass ); 59 } 60 | Popular Tags |