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