@HandlerOutput(name="RmicOptions", type=String.class),
@HandlerOutput(name="BytecodePreprocessor", type=String.class)})
public static void getServerJvmAttributes(HandlerContext handlerCtx) {
ConfigConfig config = AMXUtil.getConfig(((String)handlerCtx.getInputValue("ConfigName")));
JavaConfig javaConfig = config.getJavaConfig();
String javaHome = javaConfig.getJavaHome();
String javacOptions = javaConfig.getJavacOptions();
boolean debugEnabled = javaConfig.getDebugEnabled();
String debugOptions = javaConfig.getDebugOptions();
String rmicOptions = javaConfig.getRMICOptions();
String bytecodePreprocessors = javaConfig.getBytecodePreprocessors();
handlerCtx.setOutputValue("JavaHome", javaHome);
handlerCtx.setOutputValue("JavacOptions", javacOptions);
handlerCtx.setOutputValue("DebugEnabled", debugEnabled);
handlerCtx.setOutputValue("DebugOptions", debugOptions);
handlerCtx.setOutputValue("RmicOptions", rmicOptions);