src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/http/HTTPConstants.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2010, 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 --- 1,7 ---- /* ! * Copyright (c) 1997, 2012, 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
*** 33,48 **** * @author WS Development Team */ public interface HTTPConstants { // namespace URIs ! public static String NS_WSDL_HTTP = "http://schemas.xmlsoap.org/wsdl/http/"; // QNames ! public static QName QNAME_ADDRESS = new QName(NS_WSDL_HTTP, "address"); ! public static QName QNAME_BINDING = new QName(NS_WSDL_HTTP, "binding"); ! public static QName QNAME_OPERATION = new QName(NS_WSDL_HTTP, "operation"); ! public static QName QNAME_URL_ENCODED = ! new QName(NS_WSDL_HTTP, "urlEncoded"); ! public static QName QNAME_URL_REPLACEMENT = ! new QName(NS_WSDL_HTTP, "urlReplacement"); } --- 33,46 ---- * @author WS Development Team */ public interface HTTPConstants { // namespace URIs ! static final String NS_WSDL_HTTP = "http://schemas.xmlsoap.org/wsdl/http/"; // QNames ! static final QName QNAME_ADDRESS = new QName(NS_WSDL_HTTP, "address"); ! static final QName QNAME_BINDING = new QName(NS_WSDL_HTTP, "binding"); ! static final QName QNAME_OPERATION = new QName(NS_WSDL_HTTP, "operation"); ! static final QName QNAME_URL_ENCODED = new QName(NS_WSDL_HTTP, "urlEncoded"); ! static final QName QNAME_URL_REPLACEMENT = new QName(NS_WSDL_HTTP, "urlReplacement"); }