org.apache.woden.wsdl20.extensions.http
Interface HTTPBindingExtensions

All Superinterfaces:
ComponentExtensionContext

public interface HTTPBindingExtensions
extends ComponentExtensionContext

Provides access to the extension properties of the Binding component that are in the http://www.w3.org/ns/wsdl/http namespace. These extension properties can be accessed as ExtensionProperty objects via the getProperties and getProperty methods using the property names and Java types shown in the following table.

Property name Java type
http method default java.lang.String
http query parameter separator default java.lang.String
http cookies java.lang.Boolean
http content encoding default java.lang.String

In addition to the getProperties and getProperty methods, this interface defines accessor methods specific to each HTTP extension property.

Author:
John Kaputin (jkaputin@apache.org)

Method Summary
 java.lang.String getHttpContentEncodingDefault()
           
 java.lang.String getHttpMethodDefault()
           
 java.lang.String getHttpQueryParameterSeparatorDefault()
           
 java.lang.Boolean isHttpCookies()
           
 
Methods inherited from interface org.apache.woden.wsdl20.extensions.ComponentExtensionContext
getNamespace, getParent, getProperties, getProperty
 

Method Detail

getHttpMethodDefault

public java.lang.String getHttpMethodDefault()

getHttpQueryParameterSeparatorDefault

public java.lang.String getHttpQueryParameterSeparatorDefault()

isHttpCookies

public java.lang.Boolean isHttpCookies()

getHttpContentEncodingDefault

public java.lang.String getHttpContentEncodingDefault()