view src/main/java/alice/test/topology/localTestTopology/LocalTestTopologyConfig.java @ 655:1c93e82e05c6 default tip

fix timestamp
author suruga
date Sat, 17 Feb 2018 00:33:00 +0900
parents e321c5ec9b58
children
line wrap: on
line source

package alice.test.topology.localTestTopology;

import alice.daemon.Config;

public class LocalTestTopologyConfig extends Config {

    public String hostname = "127.0.0.1";
    public int connectPort = 10000;
    public String key = "remote";

    public LocalTestTopologyConfig(String[] args,int port, String dsmName) {
        super(args);
        hostname = dsmName;
        connectPort = port;
        localPort = 0; // local test mode for create tree topology
        key = dsmName;
    }

}