01: /*
02: * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
03: * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
04: */
05:
06: package javax.xml.ws.http;
07:
08: import javax.xml.ws.Binding;
09:
10: /** The <code>HTTPBinding</code> interface is an
11: * abstraction for the XML/HTTP binding.
12: *
13: * @since JAX-WS 2.0
14: **/
15: public interface HTTPBinding extends Binding {
16:
17: /**
18: * A constant representing the identity of the XML/HTTP binding.
19: */
20: public static final String HTTP_BINDING = "http://www.w3.org/2004/08/wsdl/http";
21: }
|