KickJava   Java API By Example, From Geeks To Geeks.

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


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
28 public interface PortComponent extends org.netbeans.modules.j2ee.dd.api.common.CommonDDBean{
29     
30         public static final String JavaDoc PORT_COMPONENT_NAME = "PortComponentName"; // NOI18N
31
public static final String JavaDoc PORTCOMPONENTNAMEID = "PortComponentNameId"; // NOI18N
32
public static final String JavaDoc WSDL_PORT = "WsdlPort"; // NOI18N
33
public static final String JavaDoc WSDLPORTID = "WsdlPortId"; // NOI18N
34
public static final String JavaDoc SERVICE_ENDPOINT_INTERFACE = "ServiceEndpointInterface"; // NOI18N
35
public static final String JavaDoc SERVICE_IMPL_BEAN = "ServiceImplBean"; // NOI18N
36
public static final String JavaDoc HANDLER = "Handler"; // NOI18N
37

38     public void setId(java.lang.String JavaDoc value);
39
40     public java.lang.String JavaDoc getId();
41
42     public void setDescription(java.lang.String JavaDoc value);
43
44     public java.lang.String JavaDoc getDescription();
45
46     public void setDescriptionId(java.lang.String JavaDoc value);
47
48     public java.lang.String JavaDoc getDescriptionId();
49
50     public void setDescriptionXmlLang(java.lang.String JavaDoc value);
51
52     public java.lang.String JavaDoc getDescriptionXmlLang();
53
54     public void setDisplayName(java.lang.String JavaDoc value);
55
56     public java.lang.String JavaDoc getDisplayName();
57
58     public void setDisplayNameId(java.lang.String JavaDoc value);
59
60     public java.lang.String JavaDoc getDisplayNameId();
61
62     public void setDisplayNameXmlLang(java.lang.String JavaDoc value);
63
64     public java.lang.String JavaDoc getDisplayNameXmlLang();
65
66     public void setIcon(Icon value);
67
68     public Icon getIcon();
69
70     public Icon newIcon();
71
72
73     public void setPortComponentName(java.lang.String JavaDoc value);
74
75     public java.lang.String JavaDoc getPortComponentName();
76
77     public void setPortComponentNameId(java.lang.String JavaDoc value);
78
79     public java.lang.String JavaDoc getPortComponentNameId();
80
81     //public void setWsdlPort(java.lang.String value);
82

83     //public java.lang.String getWsdlPort();
84

85     public void setWsdlPort(org.netbeans.modules.schema2beans.QName value);
86
87     public org.netbeans.modules.schema2beans.QName getWsdlPort();
88
89     public void setWsdlPortId(java.lang.String JavaDoc value);
90
91     public java.lang.String JavaDoc getWsdlPortId();
92
93     public void setServiceEndpointInterface(java.lang.String JavaDoc value);
94
95     public java.lang.String JavaDoc getServiceEndpointInterface();
96
97     public void setServiceImplBean(ServiceImplBean value);
98
99     public ServiceImplBean getServiceImplBean();
100
101     public ServiceImplBean newServiceImplBean();
102
103     public void setHandler(int index, PortComponentHandler value);
104
105     public PortComponentHandler getHandler(int index);
106
107     public int sizeHandler();
108
109     public void setHandler(PortComponentHandler[] value);
110
111     public PortComponentHandler[] getHandler();
112
113     public int addHandler(org.netbeans.modules.j2ee.dd.api.webservices.PortComponentHandler value);
114
115     public int removeHandler(org.netbeans.modules.j2ee.dd.api.webservices.PortComponentHandler value);
116
117     public PortComponentHandler newPortComponentHandler();
118
119 }
120
Popular Tags