Package org.jtestserver.server.commands

Examples of org.jtestserver.server.commands.GetStatusCommand


    public TestServer() throws IOException, ProtocolException {
        nameToCommand = new HashMap<String, TestServerCommand>();
       
        addCommand(new RunMauveTestCommand());
        addCommand(new ShutdownCommand(this));
        addCommand(new GetStatusCommand());
       
        config = Config.read();
        Server<?, ?> s = null;
        //TODO use config for min and max port
        for (int port = config.getPort(); port < (config.getPort() + 10); port++) {
View Full Code Here

TOP

Related Classes of org.jtestserver.server.commands.GetStatusCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.