KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > dd > api > webservices > PortComponentHandler


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 /**
20  * This interface has all of the bean info accessor methods.
21  *
22  * @Generated
23  */

24
25 package org.netbeans.modules.j2ee.dd.api.webservices;
26 import org.netbeans.modules.j2ee.dd.api.common.Icon;
27 import org.netbeans.modules.j2ee.dd.api.common.InitParam;
28
29 public interface PortComponentHandler extends org.netbeans.modules.j2ee.dd.api.common.ComponentInterface {
30     
31         public Icon newIcon();
32
33     public void setHandlerName(java.lang.String JavaDoc value);
34
35     public java.lang.String JavaDoc getHandlerName();
36
37     public void setHandlerNameId(java.lang.String JavaDoc value);
38
39     public java.lang.String JavaDoc getHandlerNameId();
40
41     public void setHandlerClass(java.lang.String JavaDoc value);
42
43     public java.lang.String JavaDoc getHandlerClass();
44
45     public void setInitParam(int index, InitParam value);
46
47     public InitParam getInitParam(int index);
48
49     public int sizeInitParam();
50
51     public void setInitParam(InitParam[] value);
52
53     public InitParam[] getInitParam();
54
55     public int addInitParam(InitParam value);
56
57     public int removeInitParam(InitParam value);
58
59     public InitParam newInitParam();
60
61     public void setSoapHeader(int index, org.netbeans.modules.schema2beans.QName value);
62
63     public org.netbeans.modules.schema2beans.QName getSoapHeader(int index);
64
65     public int sizeSoapHeader();
66
67     public void setSoapHeader(org.netbeans.modules.schema2beans.QName[] value);
68
69     public org.netbeans.modules.schema2beans.QName[] getSoapHeader();
70
71     public int addSoapHeader(org.netbeans.modules.schema2beans.QName value);
72
73     public int removeSoapHeader(org.netbeans.modules.schema2beans.QName value);
74
75     public void setSoapHeaderId(int index, java.lang.String JavaDoc value);
76
77     public java.lang.String JavaDoc getSoapHeaderId(int index);
78
79     public int sizeSoapHeaderId();
80
81     public void setSoapRole(int index, java.lang.String JavaDoc value);
82
83     public java.lang.String JavaDoc getSoapRole(int index);
84
85     public int sizeSoapRole();
86
87     public void setSoapRole(java.lang.String JavaDoc[] value);
88
89     public java.lang.String JavaDoc[] getSoapRole();
90
91     public int addSoapRole(java.lang.String JavaDoc value);
92
93     public int removeSoapRole(java.lang.String JavaDoc value);
94
95     public void setSoapRoleId(java.lang.String JavaDoc value);
96
97     public java.lang.String JavaDoc getSoapRoleId();
98
99 }
100
Popular Tags