alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.api.web.dd;
/**
 * Generated interface for ServiceRef element.
 *
 *

Important note: Do not provide an implementation of this interface unless you are a DD API provider! *

*/ public interface ServiceRef extends org.netbeans.api.web.dd.common.ComponentInterface { /** Setter for service-ref-name property. * @param value property value */ public void setServiceRefName(java.lang.String value); /** Getter for service-ref-name property. * @return property value */ public java.lang.String getServiceRefName(); /** Setter for service-interface property. * @param value property value */ public void setServiceInterface(java.lang.String value); /** Getter for service-interface property. * @return property value */ public java.lang.String getServiceInterface(); /** Setter for wsdl-file property. * @param value property value */ public void setWsdlFile(java.net.URI value); /** Getter for wsdl-file property. * @return property value */ public java.net.URI getWsdlFile(); /** Setter for jaxrpc-mapping-file property. * @param value property value */ public void setJaxrpcMappingFile(java.lang.String value); /** Getter for jaxrpc-mapping-file property. * @return property value */ public java.lang.String getJaxrpcMappingFile(); /** Setter for service-qname property. * @param value property value */ public void setServiceQname(java.lang.String value); /** Getter for service-qname property. * @return property value */ public java.lang.String getServiceQname(); /** Setter for port-component-ref element. * @param index position in the array of elements * @param valueInterface port-component-ref element (PortComponentRef object) */ public void setPortComponentRef(int index, org.netbeans.api.web.dd.PortComponentRef valueInterface); /** Getter for port-component-ref element. * @param index position in the array of elements * @return port-component-ref element (PortComponentRef object) */ public org.netbeans.api.web.dd.PortComponentRef getPortComponentRef(int index); /** Setter for port-component-ref elements. * @param value array of port-component-ref elements (PortComponentRef objects) */ public void setPortComponentRef(org.netbeans.api.web.dd.PortComponentRef[] value); /** Getter for port-component-ref elements. * @return array of port-component-ref elements (PortComponentRef objects) */ public org.netbeans.api.web.dd.PortComponentRef[] getPortComponentRef(); /** Returns size of port-component-ref elements. * @return number of port-component-ref elements */ public int sizePortComponentRef(); /** Adds port-component-ref element. * @param valueInterface port-component-ref element (PortComponentRef object) * @return index of new port-component-ref */ public int addPortComponentRef(org.netbeans.api.web.dd.PortComponentRef valueInterface); /** Removes port-component-ref element. * @param valueInterface port-component-ref element (PortComponentRef object) * @return index of the removed port-component-ref */ public int removePortComponentRef(org.netbeans.api.web.dd.PortComponentRef valueInterface); /** Setter for handler element. * @param index position in the array of elements * @param valueInterface handler element (SeviceRefHandler object) */ public void setHandler(int index, org.netbeans.api.web.dd.ServiceRefHandler valueInterface); /** Getter for handler element. * @param index position in the array of elements * @return handler element (SeviceRefHandler object) */ public org.netbeans.api.web.dd.ServiceRefHandler getHandler(int index); /** Setter for handler elements. * @param value array of handler elements (SeviceRefHandler objects) */ public void setHandler(org.netbeans.api.web.dd.ServiceRefHandler[] value); /** Getter for handler elements. * @return array of handler elements (SeviceRefHandler objects) */ public org.netbeans.api.web.dd.ServiceRefHandler[] getHandler(); /** Returns size of handler elements. * @return number of handler elements */ public int sizeHandler(); /** Adds handler element. * @param valueInterface handler element (SeviceRefHandler object) * @return index of new handler */ public int addHandler(org.netbeans.api.web.dd.ServiceRefHandler valueInterface); /** Removes handler element. * @param valueInterface handler element (SeviceRefHandler object) * @return index of the removed handler */ public int removeHandler(org.netbeans.api.web.dd.ServiceRefHandler valueInterface); }
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.