All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ow2.easywsdl.wsdl.api.abstractItf.AbsItfBinding Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
/**
 * easyWSDL - easyWSDL toolbox Platform.
 * Copyright (c) 2008,  eBM Websourcing
 * All rights reserved.
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in the
 *       documentation and/or other materials provided with the distribution.
 *     * Neither the name of the University of California, Berkeley nor the
 *       names of its contributors may be used to endorse or promote products
 *       derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package org.ow2.easywsdl.wsdl.api.abstractItf;

import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;

import javax.xml.namespace.QName;

import org.ow2.easywsdl.wsdl.api.WSDLElement;
import org.ow2.easywsdl.wsdl.api.WSDLException;
import org.ow2.easywsdl.wsdl.api.binding.BindingProtocol.SOAPMEPConstants;


/**
 * This interface represents a port type binding and describes the protocol
 * required for using operations in a port type.
 * 
 * @author Nicolas Salatge - eBM WebSourcing
 */
@SuppressWarnings("unchecked")
public interface AbsItfBinding
        extends WSDLElement {

    /**
     * SOAP Version Constants for the Message Exchange Patterns.
     * 
     */
    public enum BindingConstants {
        SOAP11_BINDING4WSDL11("http://schemas.xmlsoap.org/wsdl/soap/"), SOAP12_BINDING4WSDL11(
                "http://schemas.xmlsoap.org/wsdl/soap12/"), HTTP11_BINDING4WSDL11(
                "http://schemas.xmlsoap.org/wsdl/http/"), MIME_BINDING4WSDL11(
                "http://schemas.xmlsoap.org/wsdl/mime/"), SOAP_BINDING4WSDL20(
                "http://www.w3.org/ns/wsdl/soap"), HTTP_BINDING4WSDL20(
                "http://www.w3.org/ns/wsdl/http"), RPC_BINDING4WSDL20(
                "http://www.w3.org/ns/wsdl/rpc");

        /**
         * 
         */
        private final String nameSpace;

        private final URI soapURI;

        /**
         * Creates a new instance of {@link SOAPMEPConstants}
         * 
         * @param nameSpace
         */
        private BindingConstants(final String nameSpace) {
            this.nameSpace = nameSpace;
            try {
                this.soapURI = new URI(nameSpace);
            } catch (final URISyntaxException e) {
                throw new Error("Unexpected Error in URI namespace syntax", e); 
            }
        }

        /**
         * 
         * @param pattern
         * @return
         */
        public static BindingConstants valueOf(final URI pattern) {
            BindingConstants result = null;
            if (pattern != null) {
                for (final BindingConstants soap : BindingConstants.values()) {
                    if (soap.nameSpace.equals(pattern.toString())) {
                        result = soap;
                    }
                }
            }
            return result;
        }

        /**
         * 
         * @return
         */
        public URI value() {
            return this.soapURI;
        }

        /**
         * Please use this equals method instead of using :
         * value().equals(mep)
         *  which is
         * almost 10 times slower...
         * 
         * @param mep
         * @return
         */
        public boolean equals(final URI mep) {
            return this.toString().equals(mep.toString());
        }

        /*
         * (non-Javadoc)
         * 
         * @see java.lang.Enum#toString()
         */
        @Override
        public String toString() {
            return this.nameSpace;
        }
    }

    /**
     * Constants for the style of Message Exchange.
     * 
     */
    public enum StyleConstant {
        DOCUMENT("document"), RPC("rpc");

        private final String value;

        /**
         * Creates a new instance of {@link StyleConstant}
         * 
         * @param value
         */
        private StyleConstant(final String value) {
            this.value = value;
        }

        /**
         * 
         * @return
         */
        public String value() {
            return this.value;
        }

        /**
         * Please use this equals method instead of using :
         * value().equals(value)
         *  which is
         * almost 10 times slower...
         * 
         * @param value
         * @return
         */
        public boolean equals(final String v) {
            return this.toString().equals(v);
        }

        /*
         * (non-Javadoc)
         * 
         * @see java.lang.Enum#toString()
         */
        @Override
        public String toString() {
            return this.value;
        }
    }

    /**
     * Set the name of this binding.
     * 
     * @param name
     *            the desired name
     */
    void setQName(QName name);

    /**
     * Get the name of this binding.
     * 
     * @return the binding name
     */
    QName getQName();

    /**
     * Set the port type this is a binding for.
     * 
     * @param interfaceType
     *            the port type associated with this binding
     */
    void setInterface(I interfaceType);

    /**
     * Get the port type this is a binding for.
     * 
     * @return the associated port type
     */
    I getInterface();
    
    /**
     * create binding operation
     * @return
     */
    BO createBindingOperation();

    /**
     * Add an operation binding to binding.
     * 
     * @param bindingOperation
     *            the operation binding to be added
     */
    void addBindingOperation(BO bindingOperation);

    /**
     * Get the specified operation binding. Note that operation names can be
     * overloaded within a PortType.
     * 

* * @throws IllegalArgumentException * if duplicate operations are found. */ BO getBindingOperation(String name); /** * Get all the operation bindings defined here. */ List getBindingOperations(); /** * Remove the specified operation binding. Note that operation names can be * overloaded within a PortType. * * Usage of the input and output message name parameters is as described for * the getBindingOperation method. * * @param name * the name of the operation binding to be removed. * * @throws IllegalArgumentException * if duplicate operations are found. * * @see #getBindingOperation(String) */ BO removeBindingOperation(String name); /** * get the transport protocol */ String getTransportProtocol(); /** * set the transport protocol * @param transportProtocol TODO * @throws WSDLException */ void setTransportProtocol(String transportProtocol); /** * get style */ StyleConstant getStyle(); /** * get type of binding */ BindingConstants getTypeOfBinding(); /** * get the version of soap binding * * @return */ String getVersion(); /* * Http binding attribute (for WSDL 2.0) */ String getHttpDefaultMethod(); String getHttpQueryParameterSeparatorDefault(); boolean isHttpCookies(); String getHttpContentEncodingDefault(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy