Class HelloService
- java.lang.Object
-
- jadex.microservice.examples.helloworld.HelloService
-
- All Implemented Interfaces:
IHelloService
public class HelloService extends java.lang.Object implements IHelloService
The hello service impl.
-
-
Field Summary
Fields Modifier and Type Field Description protected IInternalAccess
comp
Access to the hosting component.protected IServiceIdentifier
sid
Access to the service id.
-
Constructor Summary
Constructors Constructor Description HelloService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
sayHello(java.lang.String name)
Say hello method.
-
-
-
Field Detail
-
comp
protected IInternalAccess comp
Access to the hosting component.
-
sid
protected IServiceIdentifier sid
Access to the service id.
-
-
Method Detail
-
sayHello
public java.lang.String sayHello(java.lang.String name)
Say hello method.- Specified by:
sayHello
in interfaceIHelloService
- Parameters:
name
- The name to greet.- Returns:
- The greeting.
-
-