FileDocCategorySizeDatePackage
PortComponentRefType.javaAPI DocGlassfish v2 API5839Fri May 04 22:34:54 BST 2007com.sun.enterprise.tools.common.dd.webservice

PortComponentRefType

public 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 voidaddComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.add(c);
	
public voiddump(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.StringdumpBeanNode()

		StringBuffer str = new StringBuffer();
		str.append("PortComponentRefType\n");	// NOI18N
		this.dump(str, "\n  ");	// NOI18N
		return str.toString();
	
public java.lang.StringgetPortComponentLink()

		return (java.lang.String)this.getValue(PORT_COMPONENT_LINK);
	
public java.lang.StringgetServiceEndpointInterface()

		return (java.lang.String)this.getValue(SERVICE_ENDPOINT_INTERFACE);
	
voidinitialize(int options)


	
public static voidremoveComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.remove(c);
	
public voidsetPortComponentLink(java.lang.String value)

		this.setValue(PORT_COMPONENT_LINK, value);
	
public voidsetServiceEndpointInterface(java.lang.String value)

		this.setValue(SERVICE_ENDPOINT_INTERFACE, value);
	
public voidvalidate()