if (log.isTraceEnabled())
log.trace("invoke(): non-managed method: " + method.toString());
Object target = methodInvocation.getTargetObject();
if (target == null)
{
throw new PojoCacheException("CollectionInterceptorUtil.invoke(): targetObject is null." +
" Can't invoke " + method.toString());
}
return method.invoke(target, args);
// return method.invoke(interceptor, args);
}