| java.lang.Object org.springframework.ws.server.endpoint.AbstractMarshallingPayloadEndpoint
Field Summary | |
final protected Log | logger Logger available to subclasses. |
logger | final protected Log logger(Code) | | Logger available to subclasses.
|
AbstractMarshallingPayloadEndpoint | protected AbstractMarshallingPayloadEndpoint(Marshaller marshaller, Unmarshaller unmarshaller)(Code) | | Creates a new AbstractMarshallingPayloadEndpoint with the given marshaller and unmarshaller.
Parameters: marshaller - the marshaller to use Parameters: unmarshaller - the unmarshaller to use |
afterMarshallerSet | public void afterMarshallerSet() throws Exception(Code) | | Template method that gets called after the marshaller and unmarshaller have been set.
The default implementation does nothing.
|
afterPropertiesSet | final public void afterPropertiesSet() throws Exception(Code) | | |
getMarshaller | public Marshaller getMarshaller()(Code) | | Returns the marshaller used for transforming objects into XML.
|
getUnmarshaller | public Unmarshaller getUnmarshaller()(Code) | | Returns the unmarshaller used for transforming XML into objects.
|
invokeInternal | abstract protected Object invokeInternal(Object requestObject) throws Exception(Code) | | Template method that subclasses must implement to process a request.
The unmarshaled request object is passed as a parameter, and the returned object is marshalled to a response. If
no response is required, return null .
Parameters: requestObject - the unnmarshalled message payload as an object the object to be marshalled as response, or null if a response is not required |
setMarshaller | final public void setMarshaller(Marshaller marshaller)(Code) | | Sets the marshaller used for transforming objects into XML.
|
setUnmarshaller | final public void setUnmarshaller(Unmarshaller unmarshaller)(Code) | | Sets the unmarshaller used for transforming XML into objects.
|
|
|