org.springframework.ws.transport.http
Class AbstractHttpWebServiceMessageSender
java.lang.Object
org.springframework.ws.transport.http.AbstractHttpWebServiceMessageSender
- All Implemented Interfaces:
- WebServiceMessageSender
- Direct Known Subclasses:
- CommonsHttpMessageSender, HttpComponentsMessageSender, HttpUrlConnectionMessageSender
public abstract class AbstractHttpWebServiceMessageSender
- extends Object
- implements WebServiceMessageSender
Abstract base class for WebServiceMessageSender implementations that use
HTTP.
- Since:
- 1.0.0
- Author:
- Arjen Poutsma
|
Field Summary |
protected Log |
logger
Logger available to subclasses. |
|
Method Summary |
boolean |
isAcceptGzipEncoding()
Return whether to accept GZIP encoding, that is, whether to send the HTTP Accept-Encoding header
with gzip as value. |
void |
setAcceptGzipEncoding(boolean acceptGzipEncoding)
Set whether to accept GZIP encoding, that is, whether to send the HTTP Accept-Encoding header with
gzip as value. |
boolean |
supports(URI uri)
Does this WebServiceMessageSender support the supplied URI? |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
logger
protected final Log logger
- Logger available to subclasses.
AbstractHttpWebServiceMessageSender
public AbstractHttpWebServiceMessageSender()
isAcceptGzipEncoding
public boolean isAcceptGzipEncoding()
- Return whether to accept GZIP encoding, that is, whether to send the HTTP
Accept-Encoding header
with gzip as value.
setAcceptGzipEncoding
public void setAcceptGzipEncoding(boolean acceptGzipEncoding)
- Set whether to accept GZIP encoding, that is, whether to send the HTTP
Accept-Encoding header with
gzip as value.
Default is true. Turn this flag off if you do not want GZIP response compression even if enabled on
the HTTP server.
supports
public boolean supports(URI uri)
- Description copied from interface:
WebServiceMessageSender
- Does this
WebServiceMessageSender support the supplied URI?
- Specified by:
supports in interface WebServiceMessageSender
- Parameters:
uri - the URI to be checked
- Returns:
true if this WebServiceMessageSender supports the supplied URI
Copyright © 2005-2013 The Spring Web Services Framework. All Rights Reserved.