KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsee > TestBean


1 /*
2  * Created on 23.02.2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package test.wsee;
8
9 /**
10  * @author Jung
11  * @web.servlet name="TestService"
12  * @wsee.port-component
13  * name="Test"
14  * local-part="Test"
15  * display-name="Test"
16  * small-icon="test-small.gif"
17  * large-icon="test-large.gif"
18  * description="Java Bean exposed as a webservice"
19  * @wsee.handler
20  * name="TestHandler"
21  * handler-class="test.wsee.TestHandler"
22  * soap-header-namespace-uri="http://xdoclet.sourcefore.net/wsee/test-handler"
23  * soap-header-local-part="TestHeader"
24  * soap-role="TestRole"
25  * display-name="TestHandler"
26  * small-icon="testhandler-small.ico"
27  * large-icon="testhandler-large.ico"
28  */

29
30 public class TestBean implements test.wsee.TestService {
31
32    /**
33     * @web.interface-method
34     */

35    public void testMethod() {
36    }
37
38 }
39
Popular Tags