Interceptorpublic class TracingInterceptor extends java.lang.Object implements Interceptor
| Modifier and Type | Field | Description |
|---|---|---|
protected java.io.Writer |
writer |
| Constructor | Description |
|---|---|
TracingInterceptor() |
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.Object |
afterInvoke(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments,
java.lang.Object result) |
This code is executed after the method is optionally called.
|
java.lang.Object |
beforeInvoke(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments) |
This code is executed before the method is optionally called.
|
boolean |
doInvoke() |
|
java.io.Writer |
getWriter() |
Returns the writer associated with this interceptor.
|
void |
setWriter(java.io.Writer writer) |
Changes the writer associated with this interceptor.
|
protected void |
write(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments,
java.lang.String origin) |
|
protected void |
writeInfo(java.lang.Class aClass,
java.lang.String methodName,
java.lang.Object[] arguments) |
public java.io.Writer getWriter()
public void setWriter(java.io.Writer writer)
public java.lang.Object beforeInvoke(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments)
InterceptorbeforeInvoke in interface Interceptorobject - receiver object for the method callmethodName - name of the method to callarguments - arguments to the method callpublic java.lang.Object afterInvoke(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments,
java.lang.Object result)
InterceptorafterInvoke in interface Interceptorobject - receiver object for the called methodmethodName - name of the called methodarguments - arguments to the called methodresult - result of the executed method call or result of beforeInvoke if method was not calledpublic boolean doInvoke()
doInvoke in interface Interceptorprotected void write(java.lang.Object object,
java.lang.String methodName,
java.lang.Object[] arguments,
java.lang.String origin)
protected void writeInfo(java.lang.Class aClass,
java.lang.String methodName,
java.lang.Object[] arguments)
throws java.io.IOException
java.io.IOException