Uses of Interface
org.springframework.ws.server.endpoint.adapter.method.MethodReturnValueHandler
Packages that use MethodReturnValueHandler
Package
Description
Provides miscellaneous
EndpointAdapter
implementations.Provides the
MethodArgumentResolver
and MethodReturnValueHandler
abstractions, and various
implementations thereof.Provides DOM-based implementations of the
MethodArgumentResolver
and
MethodReturnValueHandler
interfaces.Provides JAXB2-based implementations of the
MethodArgumentResolver
and
MethodReturnValueHandler
interfaces.-
Uses of MethodReturnValueHandler in org.springframework.ws.config.annotation
Method parameters in org.springframework.ws.config.annotation with type arguments of type MethodReturnValueHandlerModifier and TypeMethodDescriptionprotected void
DelegatingWsConfiguration.addReturnValueHandlers
(List<MethodReturnValueHandler> returnValueHandlers) protected void
WsConfigurationSupport.addReturnValueHandlers
(List<MethodReturnValueHandler> returnValueHandlers) Add customMethodReturnValueHandler
s in addition to the ones registered by default.void
WsConfigurer.addReturnValueHandlers
(List<MethodReturnValueHandler> returnValueHandlers) Add handlers to support custom controller method return value types.void
WsConfigurerAdapter.addReturnValueHandlers
(List<MethodReturnValueHandler> returnValueHandlers) Add handlers to support custom controller method return value types.void
WsConfigurerComposite.addReturnValueHandlers
(List<MethodReturnValueHandler> returnValueHandlers) -
Uses of MethodReturnValueHandler in org.springframework.ws.server.endpoint.adapter
Methods in org.springframework.ws.server.endpoint.adapter that return types with arguments of type MethodReturnValueHandlerModifier and TypeMethodDescriptionDefaultMethodEndpointAdapter.getCustomMethodReturnValueHandlers()
Returns the custom return value handlers.DefaultMethodEndpointAdapter.getMethodReturnValueHandlers()
Returns the list ofMethodReturnValueHandler
s to use.Method parameters in org.springframework.ws.server.endpoint.adapter with type arguments of type MethodReturnValueHandlerModifier and TypeMethodDescriptionvoid
DefaultMethodEndpointAdapter.setCustomMethodReturnValueHandlers
(List<MethodReturnValueHandler> customMethodReturnValueHandlers) Sets the handlers for custom return value types.void
DefaultMethodEndpointAdapter.setMethodReturnValueHandlers
(List<MethodReturnValueHandler> methodReturnValueHandlers) Sets the list ofMethodReturnValueHandler
s to use. -
Uses of MethodReturnValueHandler in org.springframework.ws.server.endpoint.adapter.method
Classes in org.springframework.ws.server.endpoint.adapter.method that implement MethodReturnValueHandlerModifier and TypeClassDescriptionclass
Abstract base class forMethodArgumentResolver
andMethodReturnValueHandler
implementations based onRequestPayload
andResponsePayload
annotations.class
Abstract base class forMethodArgumentResolver
andMethodReturnValueHandler
implementations based onSource
s.class
Implementation ofMethodArgumentResolver
andMethodReturnValueHandler
that usesMarshaller
andUnmarshaller
to support marshalled objects.class
-
Uses of MethodReturnValueHandler in org.springframework.ws.server.endpoint.adapter.method.dom
Classes in org.springframework.ws.server.endpoint.adapter.method.dom that implement MethodReturnValueHandlerModifier and TypeClassDescriptionclass
Implementation ofMethodArgumentResolver
andMethodReturnValueHandler
that supports dom4j elements.class
Implementation ofMethodArgumentResolver
andMethodReturnValueHandler
that supports W3C DOM elements.class
Implementation ofMethodArgumentResolver
andMethodReturnValueHandler
that supports JDOM elements.class
Implementation ofMethodArgumentResolver
andMethodReturnValueHandler
that supports XOM elements. -
Uses of MethodReturnValueHandler in org.springframework.ws.server.endpoint.adapter.method.jaxb
Classes in org.springframework.ws.server.endpoint.adapter.method.jaxb that implement MethodReturnValueHandlerModifier and TypeClassDescriptionclass
Abstract base class forMethodArgumentResolver
andMethodReturnValueHandler
implementations that use JAXB2.class
Implementation ofMethodArgumentResolver
andMethodReturnValueHandler
that supportsJAXBElement
objects.class
Implementation ofMethodArgumentResolver
andMethodReturnValueHandler
that supports parameters annotated with@XmlRootElement
or@XmlType
, and return values annotated with@XmlRootElement
.