* @param value
*/
private int getReturningParamIndex(Method method){
AfterReturning annotation = method.getAnnotation(AfterReturning.class);
if (annotation != null){
String paramName = annotation.returning().toString();
return getParamIndexByName(method, paramName);
}
return -1;
}