/** * */ package de.test; import javax.ejb.Remote; /** * @author sjankus * */ @Remote public interface TestServer { /** * This is the only methode my testserver will support. * @param name * @return */ public Boolean doTest(String name); }