package sample;

//public class HelloImpl implements SmartLifecycle{
public class HelloImpl implements IHello{

//	private org.slf4j.Logger logger = LoggerFactory.getLogger(sample.HelloImpl.class);
	
	public Integer hello2(String a) {
		return Integer.parseInt(a);
	}

	public String hello(String a) {
		return a;
	}

}
