1package org.testng.remote;
2
3import com.beust.jcommander.Parameter;
4
5public class RemoteArgs {
6  public static final String PORT = "-serport";
7  @Parameter(names = PORT, description = "The port for the serialization protocol")
8  public Integer serPort;
9
10  public static final String DONT_EXIT= "-dontexit";
11  @Parameter(names = DONT_EXIT, description = "Do not exit the JVM once done")
12  public boolean dontExit = false;
13
14  public static final String ACK = "-ack";
15  @Parameter(names = ACK, description = "Use ACK's")
16  public boolean ack = false;
17}
18