|
Spring Web Services Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MethodArgumentResolver
Strategy interface used to resolve method parameters into arguments. This interface is used to allow the DefaultMethodEndpointAdapter
to be
indefinitely extensible.
Method Summary | |
---|---|
Object |
resolveArgument(MessageContext messageContext,
MethodParameter parameter)
Resolves the given parameter into a method argument. |
boolean |
supportsParameter(MethodParameter parameter)
Indicates whether the given method parameter is supported by this resolver. |
Method Detail |
---|
boolean supportsParameter(MethodParameter parameter)
parameter
- the method parameter to check
true
if this resolver supports the supplied parameter; false
otherwiseObject resolveArgument(MessageContext messageContext, MethodParameter parameter) throws Exception
messageContext
- the current message contextparameter
- the parameter to resolve to an argument. This parameter must have previously been passed to
the supportsParameter(MethodParameter)
method of this interface, which must
have returned true
.
null
.
Exception
- in case of errors
|
Spring Web Services Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |