1 23 package com.sun.appserv.management.config; 24 25 import com.sun.appserv.management.base.XTypes; 26 27 28 31 32 public interface ProfilerConfig extends NamedConfigElement, PropertiesAccess, Enabled 33 { 34 35 public static final String J2EE_TYPE = XTypes.PROFILER_CONFIG; 36 37 public String getClasspath(); 38 public void setClasspath( String classpath ); 39 public String getNativeLibraryPath(); 40 public void setNativeLibraryPath( String nativeLibraryPath ); 41 42 43 public String [] getJVMOptions(); 44 50 public void setJVMOptions( String [] jvmOptions ); 51 } 52 | Popular Tags |