| org.apache.cxf.transports.http.QueryHandler
QueryHandler | public interface QueryHandler (Code) | | |
Method Summary | |
String | getResponseContentType(String fullQueryString, String ctx) | boolean | isRecognizedQuery(String fullQueryString, String ctx, EndpointInfo endpoint) Parameters: fullQueryString - the target full query string (with params) of the request Parameters: ctx - the context that was set for this invokation Parameters: endpoint - the current endpoint for this context (e.g. | void | writeResponse(String fullQueryString, String ctx, EndpointInfo endpoint, OutputStream os) Write query response to output stream
Parameters: fullQueryString - the target full query string (with params) of the request Parameters: ctx - the context that was set for this invokation Parameters: endpoint - the current endpoint for this context (e.g. |
getResponseContentType | String getResponseContentType(String fullQueryString, String ctx)(Code) | | Parameters: fullQueryString - the target full query string (with params) of the request Parameters: ctx - the context that was set for this invokation the content-type for the response |
isRecognizedQuery | boolean isRecognizedQuery(String fullQueryString, String ctx, EndpointInfo endpoint)(Code) | | Parameters: fullQueryString - the target full query string (with params) of the request Parameters: ctx - the context that was set for this invokation Parameters: endpoint - the current endpoint for this context (e.g. the endpoint thisDestination was activated for). Null if no current endpoint. true iff the URI is a recognized WSDL query |
writeResponse | void writeResponse(String fullQueryString, String ctx, EndpointInfo endpoint, OutputStream os)(Code) | | Write query response to output stream
Parameters: fullQueryString - the target full query string (with params) of the request Parameters: ctx - the context that was set for this invokation Parameters: endpoint - the current endpoint for this context (e.g. the endpoint thisDestination was activated for). Null if no current endpoint. |
|
|