1 23 24 29 30 package com.sun.appserv.management.config; 31 32 import java.util.Map ; 33 34 import com.sun.appserv.management.base.XTypes; 35 import com.sun.appserv.management.base.Container; 36 37 40 41 public interface JavaConfig 42 extends ConfigElement, PropertiesAccess, Container 43 { 44 45 public static final String J2EE_TYPE = XTypes.JAVA_CONFIG; 46 47 public String getBytecodePreprocessors(); 48 public void setBytecodePreprocessors( String value ); 49 50 public String getClasspathPrefix(); 51 public void setClasspathPrefix( String value ); 52 53 public String getClasspathSuffix(); 54 public void setClasspathSuffix( String value ); 55 56 public boolean getDebugEnabled(); 57 public void setDebugEnabled( boolean value ); 58 59 public String getDebugOptions(); 60 public void setDebugOptions( String value ); 61 62 public boolean getEnvClasspathIgnored(); 63 public void setEnvClasspathIgnored( boolean value ); 64 65 public String getJavaHome(); 66 public void setJavaHome( String value ); 67 68 public String getJavacOptions(); 69 public void setJavacOptions( String value ); 70 71 72 75 public String getSystemClasspath(); 76 77 80 public void setSystemClasspath( String classpath ); 81 82 public String [] getJVMOptions(); 83 84 93 public void setJVMOptions( String [] value ); 94 95 public String getNativeLibraryPathPrefix(); 96 public void setNativeLibraryPathPrefix( String value ); 97 98 public String getNativeLibraryPathSuffix(); 99 public void setNativeLibraryPathSuffix( String value ); 100 101 public String getRMICOptions(); 102 public void setRMICOptions( String value ); 103 104 public String getServerClasspath(); 105 public void setServerClasspath( String value ); 106 107 108 112 public ProfilerConfig getProfilerConfig(); 113 114 122 public ProfilerConfig createProfilerConfig( String name, Map <String ,String > optional ); 123 124 127 public void removeProfilerConfig(); 128 } 129 | Popular Tags |