public abstract class AbstractMethodInvokingDelegator<T> extends Object implements org.springframework.beans.factory.InitializingBean
Exception
s thrown by a successfully invoked delegate method are
re-thrown without wrapping. In case the delegate method throws a
Throwable
that doesn't subclass Exception
it will be wrapped
by AbstractMethodInvokingDelegator.InvocationTargetThrowableWrapper
.Modifier and Type | Class and Description |
---|---|
static class |
AbstractMethodInvokingDelegator.InvocationTargetThrowableWrapper
|
Constructor and Description |
---|
AbstractMethodInvokingDelegator() |
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet() |
protected T |
invokeDelegateMethod()
Invoker the target method with arguments set by
setArguments(Object[]) . |
protected T |
invokeDelegateMethodWithArgument(Object object)
Invokes the target method with given argument.
|
protected T |
invokeDelegateMethodWithArguments(Object[] args)
Invokes the target method with given arguments.
|
void |
setArguments(Object[] arguments) |
void |
setTargetMethod(String targetMethod) |
void |
setTargetObject(Object targetObject) |
protected T invokeDelegateMethod() throws Exception
setArguments(Object[])
.DynamicMethodInvocationException
- if the MethodInvoker
used throws exceptionException
protected T invokeDelegateMethodWithArgument(Object object) throws Exception
object
- argument for the target methodDynamicMethodInvocationException
- if the MethodInvoker
used throws exceptionException
protected T invokeDelegateMethodWithArguments(Object[] args) throws Exception
args
- arguments for the invoked methodDynamicMethodInvocationException
- if the MethodInvoker
used throws exceptionException
public void afterPropertiesSet() throws Exception
afterPropertiesSet
in interface org.springframework.beans.factory.InitializingBean
Exception
public void setTargetObject(Object targetObject)
targetObject
- the delegate - bean id can be used to set this value
in Spring configurationpublic void setTargetMethod(String targetMethod)
targetMethod
- name of the method to be invoked on
setTargetObject(Object)
.public void setArguments(Object[] arguments)
arguments
- arguments values for the {
setTargetMethod(String)
. These will be used only when the
subclass tries to invoke the target method without providing explicit
argument values.
If arguments are set to not-null value afterPropertiesSet()
will
check the values are compatible with target method's signature. In case
arguments are null (not set) method signature will not be checked and it
is assumed correct values will be supplied at runtime.Copyright © 2014 Pivotal. All rights reserved.