PortComponentRefTypepublic class PortComponentRefType extends org.netbeans.modules.schema2beans.BaseBean This generated bean class PortComponentRefType matches the schema element port-component-refType
===============================================================
The port-component-ref element declares a client dependency
on the container for resolving a Service Endpoint Interface
to a WSDL port. It optionally associates the Service Endpoint
Interface with a particular port-component. This is only used
by the container for a Service.getPort(Class) method call.
===============================================================
Generated on Fri Apr 22 15:42:58 PDT 2005 |
Fields Summary |
---|
static Vector | comparators | public static final String | SERVICE_ENDPOINT_INTERFACE | public static final String | PORT_COMPONENT_LINK |
Constructors Summary |
---|
public PortComponentRefType() // NOI18N
this(Common.USE_DEFAULT_VALUES);
| public PortComponentRefType(int options)
super(comparators, new org.netbeans.modules.schema2beans.Version(1, 2, 0));
// Properties (see root bean comments for the bean graph)
this.createProperty("service-endpoint-interface", // NOI18N
SERVICE_ENDPOINT_INTERFACE,
Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY,
java.lang.String.class);
this.createProperty("port-component-link", // NOI18N
PORT_COMPONENT_LINK,
Common.TYPE_0_1 | Common.TYPE_STRING | Common.TYPE_KEY,
java.lang.String.class);
this.createAttribute(PORT_COMPONENT_LINK, "id", "Id",
AttrProp.CDATA | AttrProp.IMPLIED,
null, null);
this.initialize(options);
|
Methods Summary |
---|
public static void | addComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.add(c);
| public void | dump(java.lang.StringBuffer str, java.lang.String indent)
String s;
Object o;
org.netbeans.modules.schema2beans.BaseBean n;
str.append(indent);
str.append("ServiceEndpointInterface"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getServiceEndpointInterface();
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(SERVICE_ENDPOINT_INTERFACE, 0, str, indent);
str.append(indent);
str.append("PortComponentLink"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getPortComponentLink();
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(PORT_COMPONENT_LINK, 0, str, indent);
| public java.lang.String | dumpBeanNode()
StringBuffer str = new StringBuffer();
str.append("PortComponentRefType\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
| public java.lang.String | getPortComponentLink()
return (java.lang.String)this.getValue(PORT_COMPONENT_LINK);
| public java.lang.String | getServiceEndpointInterface()
return (java.lang.String)this.getValue(SERVICE_ENDPOINT_INTERFACE);
| void | initialize(int options)
| public static void | removeComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.remove(c);
| public void | setPortComponentLink(java.lang.String value)
this.setValue(PORT_COMPONENT_LINK, value);
| public void | setServiceEndpointInterface(java.lang.String value)
this.setValue(SERVICE_ENDPOINT_INTERFACE, value);
| public void | validate()
|
|