Example #1
0
 @ScriptUsage(
     description = "remove profile",
     arguments = {
       @ScriptArgument(name = "name", type = "string", description = "name of the profile")
     })
 public void removeProfile(String[] args) {
   server.removeProfile(args[0]);
   context.println("removed");
 }