jadex.web.examples.hellobdiv3.IHelloService 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;
/**
* Hello service interface.
*/
@Service
public interface IHelloService
{
/**
* Say hello method.
*/
public IFuture sayHello();
}