com.eshore.cli.App Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy-suite Show documentation
Show all versions of proxy-suite Show documentation
a Intranet-through project
package com.eshore.cli;
public class App {
static CommandLine[] clis =new CommandLine[]{
new DefaultCli(),
new ServerCli(),
new ClientCli(),
new ManagerCli()
};
public static void main(String[] args) {
// TODO Auto-generated method stub
String name="default";
if(args!=null&&args.length>0){
name=args[0];
}
for(CommandLine cli:clis){
if(cli.accept(name)){
if(cli.exe(args))break;
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy