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

com.sun.tools.ws.wsdl.document.jaxws.JAXWSBindingsConstants Maven / Gradle / Ivy

/*
 * Copyright (c) 1997, 2023 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.tools.ws.wsdl.document.jaxws;

import com.sun.tools.ws.wsdl.parser.Constants;

import javax.xml.namespace.QName;

/**
 * @author Vivek Pandey
 *
 */
public interface JAXWSBindingsConstants {

    String NS_JAXWS_BINDINGS = "https://jakarta.ee/xml/ns/jaxws";
    String NS_JAXB_BINDINGS = "https://jakarta.ee/xml/ns/jaxb";
    String NS_XJC_BINDINGS = "http://java.sun.com/xml/ns/jaxb/xjc";

    /**
     * jaxws:bindings schema component
     * 
{@code
     *  binding declarations...
     * 
     *
     * wsdlLocation="xs:anyURI"? node="xs:string"? version="string"?> binding
     * declarations... 
     *}
* @wsdlLocation A URI pointing to a WSDL file establishing the scope of the * contents of this binding declaration. It MUST NOT be * present if the binding declaration is used as an extension * inside a WSDL document or if there is an ancestor binding * declaration that contains this attribute. *

* @node An XPath expression pointing to the element in the WSDL file in * scope that this binding declaration is attached to. *

* @version A version identifier. It MAY only appear on jaxws:bindings * elements that don't have any jaxws:bindings ancestors (i.e. on * outermost binding declarations). */ QName JAXWS_BINDINGS = new QName(NS_JAXWS_BINDINGS, "bindings"); String WSDL_LOCATION_ATTR = "wsdlLocation"; String NODE_ATTR = "node"; String VERSION_ATTR = "version"; /* * ? xs:string * */ QName PACKAGE = new QName(NS_JAXWS_BINDINGS, "package"); String NAME_ATTR = "name"; QName JAVADOC = new QName(NS_JAXWS_BINDINGS, "javadoc"); /* * xs:boolean ? */ QName ENABLE_WRAPPER_STYLE = new QName(NS_JAXWS_BINDINGS, "enableWrapperStyle"); /* * xs:boolean * ? */ QName ENABLE_ASYNC_MAPPING = new QName(NS_JAXWS_BINDINGS, "enableAsyncMapping"); /* * xs:boolean? */ QName ENABLE_ADDITIONAL_SOAPHEADER_MAPPING = new QName(NS_JAXWS_BINDINGS, "enableAdditionalSOAPHeaderMapping"); /* * xs:boolean? */ QName ENABLE_MIME_CONTENT = new QName(NS_JAXWS_BINDINGS, "enableMIMEContent"); /* * xs:boolean? */ QName PROVIDER = new QName(NS_JAXWS_BINDINGS, "provider"); /* * PortType * * ? * xs:string? * * * * xs:boolean * ? * * * xs:boolean * ? * */ QName CLASS = new QName(NS_JAXWS_BINDINGS, "class"); /* * PortType WSDLOperation * * ? * xs:string? * * * * xs:boolean * ? * * * xs:boolean * ? * * * */ QName METHOD = new QName(NS_JAXWS_BINDINGS, "method"); QName PARAMETER = new QName(NS_JAXWS_BINDINGS, "parameter"); String PART_ATTR = "part"; String ELEMENT_ATTR = "childElementName"; /* * Binding * * * xs:boolean * ? * * * xs:boolean * ? */ /* * WSDLBoundOperation * * * xs:boolean * ? * * * xs:boolean * ? * * * * * * * ? * xs:string? * * */ QName EXCEPTION = new QName(NS_JAXWS_BINDINGS, "exception"); /* * jaxb:bindgs QName */ QName JAXB_BINDINGS = new QName(NS_JAXB_BINDINGS, "bindings"); String JAXB_BINDING_VERSION = "3.0"; QName XSD_APPINFO = new QName(Constants.NS_XSD, "appinfo"); QName XSD_ANNOTATION = new QName(Constants.NS_XSD, "annotation"); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy