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

changeset 368
0989ad8c0860
parent 286
f50545b5e2f1
child 637
9c07ef4934dd
equal deleted inserted replaced
366:8c0b6bccfe47 368:0989ad8c0860
1 /* 1 /*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
33 * @author WS Development Team 33 * @author WS Development Team
34 */ 34 */
35 public interface HTTPConstants { 35 public interface HTTPConstants {
36 36
37 // namespace URIs 37 // namespace URIs
38 public static String NS_WSDL_HTTP = "http://schemas.xmlsoap.org/wsdl/http/"; 38 static final String NS_WSDL_HTTP = "http://schemas.xmlsoap.org/wsdl/http/";
39 39
40 // QNames 40 // QNames
41 public static QName QNAME_ADDRESS = new QName(NS_WSDL_HTTP, "address"); 41 static final QName QNAME_ADDRESS = new QName(NS_WSDL_HTTP, "address");
42 public static QName QNAME_BINDING = new QName(NS_WSDL_HTTP, "binding"); 42 static final QName QNAME_BINDING = new QName(NS_WSDL_HTTP, "binding");
43 public static QName QNAME_OPERATION = new QName(NS_WSDL_HTTP, "operation"); 43 static final QName QNAME_OPERATION = new QName(NS_WSDL_HTTP, "operation");
44 public static QName QNAME_URL_ENCODED = 44 static final QName QNAME_URL_ENCODED = new QName(NS_WSDL_HTTP, "urlEncoded");
45 new QName(NS_WSDL_HTTP, "urlEncoded"); 45 static final QName QNAME_URL_REPLACEMENT = new QName(NS_WSDL_HTTP, "urlReplacement");
46 public static QName QNAME_URL_REPLACEMENT =
47 new QName(NS_WSDL_HTTP, "urlReplacement");
48 } 46 }

mercurial