KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hints > EndpointInterface


1 package hints;
2 import javax.ejb.Stateless JavaDoc;
3 import javax.jws.WebMethod;
4 import javax.jws.WebService;
5
6 @Stateless JavaDoc()
7 @WebService(endpointInterface="test.NewWebService")
8 public interface EndpointInterface {
9     @WebMethod
10     public String JavaDoc operation();
11     
12 }
13
Popular Tags