Params.java 497 B

1234567891011121314
  1. package at.acdp.urweb;
  2. public class Params {
  3. @picocli.CommandLine.Option(names = { "-p", "--port" }, description = "HTTP Server port", required = true)
  4. public int port = 8080;
  5. @picocli.CommandLine.Option(names = { "-w", "--webroot" }, description = "Use webroot from filesystem", defaultValue = "")
  6. public String webroot = "";
  7. @picocli.CommandLine.Option(names = { "-r", "--robotip" }, description = "Robot ip address", defaultValue = "")
  8. public String robotIP = "";
  9. }