/*
 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package com.sun.xml.internal.ws.api.model.soap;

import com.sun.xml.internal.ws.api.SOAPVersion;
import com.sun.xml.internal.ws.api.model.JavaMethod;

import javax.jws.soap.SOAPBinding.Style;
import javax.jws.soap.SOAPBinding.Use;
import javax.jws.WebMethod;

Models soap:binding in a WSDL document or a SOAPBinding annotation. This can be the return of JavaMethod.getBinding().
Author:Vivek Pandey
/** * Models soap:binding in a WSDL document or a {@link javax.jws.soap.SOAPBinding} annotation. This * can be the return of {@link JavaMethod#getBinding()}. * * @author Vivek Pandey */
abstract public class SOAPBinding { protected Use use = Use.LITERAL; protected Style style = Style.DOCUMENT; protected SOAPVersion soapVersion = SOAPVersion.SOAP_11; protected String soapAction = "";
Get Use such as literal or encoded.
/** * Get {@link Use} such as <code>literal</code> or <code>encoded</code>. */
public Use getUse() { return use; }
Get Style - such as document or rpc.
/** * Get {@link Style} - such as <code>document</code> or <code>rpc</code>. */
public Style getStyle() { return style; }
Get the SOAPVersion
/** * Get the {@link SOAPVersion} */
public SOAPVersion getSOAPVersion() { return soapVersion; }
Returns true if its document/literal
/** * Returns true if its document/literal */
public boolean isDocLit() { return style == Style.DOCUMENT && use == Use.LITERAL; }
Returns true if this is a rpc/literal binding
/** * Returns true if this is a rpc/literal binding */
public boolean isRpcLit() { return style == Style.RPC && use == Use.LITERAL; }
Value of wsdl:binding/wsdl:operation/soap:operation@soapAction attribute or WebMethod.action() annotation.
For example:
<wsdl:binding name="HelloBinding" type="tns:Hello">
  <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
  <wsdl:operation name="echoData">
      <soap12:operation soapAction=""/>
...
It's always non-null. soap message serializer needs to generated SOAPAction HTTP header with the return of this method enclosed in quotes("").
See Also:
/** * Value of <code>wsdl:binding/wsdl:operation/soap:operation@soapAction</code> attribute or * {@link WebMethod#action()} annotation. * <pre> * For example: * &lt;wsdl:binding name="HelloBinding" type="tns:Hello"> * &lt;soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> * &lt;wsdl:operation name="echoData"> * &lt;soap12:operation soapAction=""/> * ... * </pre> * It's always non-null. soap message serializer needs to generated SOAPAction HTTP header with * the return of this method enclosed in quotes(""). * * @see com.sun.xml.internal.ws.api.message.Packet#soapAction */
public String getSOAPAction() { return soapAction; } }