All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eshore.cli.ServerCli Maven / Gradle / Ivy

There is a newer version: 1.2.8
Show newest version
package com.eshore.cli;

public class ServerCli 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");
		return true;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy