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

Go to download

Open source Reference Implementation of JSR-224: Java API for XML Web Services

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 1997, 2020 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 {

    static final String NS_JAXWS_BINDINGS = "https://jakarta.ee/xml/ns/jaxws";
    static final String NS_JAXB_BINDINGS = "https://jakarta.ee/xml/ns/jaxb";
    static final 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). */ static final QName JAXWS_BINDINGS = new QName(NS_JAXWS_BINDINGS, "bindings"); static final String WSDL_LOCATION_ATTR = "wsdlLocation"; static final String NODE_ATTR = "node"; static final String VERSION_ATTR = "version"; /* * ? xs:string * */ static final QName PACKAGE = new QName(NS_JAXWS_BINDINGS, "package"); static final String NAME_ATTR = "name"; static final QName JAVADOC = new QName(NS_JAXWS_BINDINGS, "javadoc"); /* * xs:boolean ? */ static final QName ENABLE_WRAPPER_STYLE = new QName(NS_JAXWS_BINDINGS, "enableWrapperStyle"); /* * xs:boolean * ? */ static final QName ENABLE_ASYNC_MAPPING = new QName(NS_JAXWS_BINDINGS, "enableAsyncMapping"); /* * xs:boolean? */ static final QName ENABLE_ADDITIONAL_SOAPHEADER_MAPPING = new QName(NS_JAXWS_BINDINGS, "enableAdditionalSOAPHeaderMapping"); /* * xs:boolean? */ static final QName ENABLE_MIME_CONTENT = new QName(NS_JAXWS_BINDINGS, "enableMIMEContent"); /* * xs:boolean? */ static final QName PROVIDER = new QName(NS_JAXWS_BINDINGS, "provider"); /* * PortType * * ? * xs:string? * * * * xs:boolean * ? * * * xs:boolean * ? * */ static final QName CLASS = new QName(NS_JAXWS_BINDINGS, "class"); /* * PortType WSDLOperation * * ? * xs:string? * * * * xs:boolean * ? * * * xs:boolean * ? * * * */ static final QName METHOD = new QName(NS_JAXWS_BINDINGS, "method"); static final QName PARAMETER = new QName(NS_JAXWS_BINDINGS, "parameter"); static final String PART_ATTR = "part"; static final String ELEMENT_ATTR = "childElementName"; /* * Binding * * * xs:boolean * ? * * * xs:boolean * ? */ /* * WSDLBoundOperation * * * xs:boolean * ? * * * xs:boolean * ? * * * * * * * ? * xs:string? * * */ static final QName EXCEPTION = new QName(NS_JAXWS_BINDINGS, "exception"); /* * jaxb:bindgs QName */ static final QName JAXB_BINDINGS = new QName(NS_JAXB_BINDINGS, "bindings"); static final String JAXB_BINDING_VERSION = "3.0"; static final QName XSD_APPINFO = new QName(Constants.NS_XSD, "appinfo"); static final QName XSD_ANNOTATION = new QName(Constants.NS_XSD, "annotation"); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy