com.eshore.cli.DefaultCli 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 DefaultCli implements CommandLine {
@Override
public boolean accept(String name) {
// TODO Auto-generated method stub
return "default".equalsIgnoreCase(name);
}
@Override
public boolean exe(String[] args) {
System.out.println("default");
System.out.println(DefaultCli.class.getProtectionDomain().getCodeSource().getLocation().getFile());
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy