@HandlerOutput(name="Gms", type=String.class),
@HandlerOutput(name="Jaxws", type=String.class)})
public static void getDefaultServerModuleLogLevels(HandlerContext handlerCtx) {
ConfigConfig config = AMXUtil.getConfig(((String)handlerCtx.getInputValue("ConfigName")));
ModuleLogLevelsConfig mConfig = config.getLogServiceConfig().getModuleLogLevelsConfig();
String admin = mConfig.getDefaultValue("Admin");
String ejb = mConfig.getDefaultValue("EJBContainer");
String classLoader = mConfig.getDefaultValue("Classloader");
String configuration = mConfig.getDefaultValue("Configuration");
String connector = mConfig.getDefaultValue("Connector");
String corba = mConfig.getDefaultValue("CORBA");
String deployment = mConfig.getDefaultValue("Deployment");
String javamail = mConfig.getDefaultValue("Javamail");
String jaxr = mConfig.getDefaultValue("JAXR");
String jaxrpc = mConfig.getDefaultValue("JAXRPC");
String jms = mConfig.getDefaultValue("JMS");
String jta = mConfig.getDefaultValue("JTA");
String jts = mConfig.getDefaultValue("JTS");
String mdb = mConfig.getDefaultValue("MDBContainer");
String naming = mConfig.getDefaultValue("Naming");
String root = mConfig.getDefaultValue("Root");
String saaj = mConfig.getDefaultValue("SAAJ");
String security = mConfig.getDefaultValue("Security");
String selfManagement = mConfig.getDefaultValue("SelfManagement");
String server = mConfig.getDefaultValue("Server");
String util = mConfig.getDefaultValue("Util");
String verifier = mConfig.getDefaultValue("Verifier");
String web = mConfig.getDefaultValue("WebContainer");
handlerCtx.setOutputValue("Admin", admin);
handlerCtx.setOutputValue("Classloader", classLoader);
handlerCtx.setOutputValue("Configuration", configuration);
handlerCtx.setOutputValue("Connector", connector);
handlerCtx.setOutputValue("Corba", corba);
handlerCtx.setOutputValue("Deployment", deployment);
handlerCtx.setOutputValue("Javamail", javamail);
handlerCtx.setOutputValue("Jaxr", jaxr);
handlerCtx.setOutputValue("Jaxrpc", jaxrpc);
handlerCtx.setOutputValue("Jms", jms);
handlerCtx.setOutputValue("Jta", jta);
handlerCtx.setOutputValue("Jts", jts);
handlerCtx.setOutputValue("MDB", mdb);
handlerCtx.setOutputValue("Naming", naming);
handlerCtx.setOutputValue("EJB", ejb);
handlerCtx.setOutputValue("Root", root);
handlerCtx.setOutputValue("Saaj", saaj);
handlerCtx.setOutputValue("Security", security);
handlerCtx.setOutputValue("SelfManagement", selfManagement);
handlerCtx.setOutputValue("Server", server);
handlerCtx.setOutputValue("Util", util);
handlerCtx.setOutputValue("Verifier", verifier);
handlerCtx.setOutputValue("WEB", web);
handlerCtx.setOutputValue("PersistenceLogLevel", admin);
handlerCtx.setOutputValue("Jbi", "INFO");
handlerCtx.setOutputValue("Jaxws", "INFO");
if (AMXUtil.isEE()){
handlerCtx.setOutputValue( "NodeAgent", mConfig.getDefaultValue("NodeAgent"));
handlerCtx.setOutputValue( "Synchronization", mConfig.getDefaultValue("Synchronization"));
handlerCtx.setOutputValue( "Gms", mConfig.getDefaultValue("GroupManagementService"));
}
}