1 24 package org.objectweb.jalisto.se.tool; 25 26 import org.objectweb.jalisto.se.JalistoFactory; 27 28 public class LaunchJMXServer { 29 public static void main(String [] args) { 30 String jalistoPropertiesFilename = "jalisto.properties"; 31 if (args.length > 0) { 32 jalistoPropertiesFilename = args[0]; 33 } 34 JalistoFactory.launchJMXServer(jalistoPropertiesFilename); 35 } 36 } 37 | Popular Tags |