jadex.web.examples.hellobdiv3.ISayHelloService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-web Show documentation
Show all versions of jadex-applications-web Show documentation
Jadex examples that can be deployed as web application.
package jadex.web.examples.hellobdiv3;
import jadex.bridge.service.annotation.Service;
import jadex.commons.future.IFuture;
@Service
public interface ISayHelloService
{
/**
* Say hello method.
* @return Say hello text.
*/
public IFuture sayHello();
}