blob: fa4648bba4681cc887a0b04257a48cddef989d0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package examples.session.stateless;
/**
* This is the Hello business interface.
*/
public interface Hello {
/**
* @return a greeting to the client.
*/
public String hello();
}
|