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

com.sun.xml.ws.api.model.wsdl.WSDLOperation Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package com.sun.xml.ws.api.model.wsdl;

import com.sun.xml.ws.api.model.wsdl.WSDLExtensible;
import com.sun.istack.NotNull;
import com.sun.istack.Nullable;

import javax.xml.namespace.QName;

/**
 * Provides abstraction of wsdl:portType/wsdl:operation.
 *
 * @author Vivek Pandey
 */
public interface WSDLOperation extends WSDLObject, WSDLExtensible {
    /**
     * Gets the name of the wsdl:portType/wsdl:operation@name attribute value as local name and wsdl:definitions@targetNamespace
     * as the namespace uri.
     */
    @NotNull QName getName();

    /**
     * Gets the wsdl:input of this operation
     */
    @NotNull WSDLInput getInput();

    /**
     * Gets the wsdl:output of this operation.
     *
     * @return
     *      null if this is an one-way operation.
     */
    @Nullable WSDLOutput getOutput();

    /**
     * Returns true if this operation is an one-way operation.
     */
    boolean isOneWay();

    /**
     * Gets the {@link WSDLFault} corresponding to wsdl:fault of this operation.
     */
    Iterable getFaults();

    /**
     * Gives {@link WSDLFault} for the given soap fault detail value.
     *
     * 
     *
     * Given a wsdl fault:
     *
     * <wsdl:message nae="faultMessage">
     *  <wsdl:part name="fault" element="ns:myException/>
     * </wsdl:message>
     *
     * <wsdl:portType>
     *  <wsdl:operation ...>
     *      <wsdl:fault name="aFault" message="faultMessage"/>
     *  </wsdl:operation>
     * <wsdl:portType>
     *
     *
     * For example given a soap 11 soap message:
     *
     * <soapenv:Fault>
     *      ...
     *      <soapenv:detail>
     *          <ns:myException>
     *              ...
     *          </ns:myException>
     *      </soapenv:detail>
     *
     * QName faultQName = new QName(ns, "myException");
     * WSDLFault wsdlFault  = getFault(faultQName);
     *
     * The above call will return a WSDLFault that abstracts wsdl:portType/wsdl:operation/wsdl:fault.
     *
     * 
* * @param faultDetailName tag name of the element inside soaenv:Fault/detail/, must be non-null. * @return returns null if a wsdl fault corresponding to the detail entry name not found. */ @Nullable WSDLFault getFault(QName faultDetailName); /** * Gives the enclosing wsdl:portType@name attribute value. */ @NotNull QName getPortTypeName(); /** * Returns parameter order * @return Parameter order */ public String getParameterOrder(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy