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();
}
if (target instanceof ResultTypeProxy) {
ResultTypeProxy rp = (ResultTypeProxy) target;
return "result[\"" + rp.getType() + "\"] - " + rp.getMethodInfo();
}