*/
public String getTargetInfo() {
if (target == null)
return null;
if (target instanceof ActionProxy) {
ActionProxy ap = (ActionProxy) target;
return "action[\"" + ap.getPath() + "\"] - " + ap.getMethodInfo();
}
if (target instanceof InterceptorProxy) {
InterceptorProxy ip = (InterceptorProxy) target;
return "interceptor[\"" + ip.getName() + "\"] - " + ip.getMethodInfo();
}