> Yes - if the interceptor supports hivemind's filter schema, > with this in the factory: > <parameters-schema-id="hivemind.MethodFilter"> > > > then you can add these parameters: > > > <interceptor service-id="JAMonInterceptor"> > <exclude method="toString"/> > <exclude method="get*"/> > <exclude method="set*"/> > <exclude method="is*"/> > </interceptor> > > <include> elements are also supported - but by default all match. > (include="*")
(Knut - thanks for the URL for the logging interceptor factory documentation.) I looked at the source code but it uses JavaAssist. So far my interceptor uses the JDK proxies, because that's what the proxy logging interceptor uses in the examples so I based my interceptor on that one. Is it possible to filter the methods with the proxy approach? Is there an example? Or would it just be better for me to convert my interceptor factory to use JavaAssist? Thanks for the help guys. Michael -- This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Internet communications cannot be guaranteed to be timely, secure, error or virus-free. The sender does not accept liability for any errors or omissions. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
