Hi, I'm Anwar and a newcomer in AspectJ. Is there a way to create a pointcut within pointcut? My case is I need to make sure the call from remote interface to my EJB3 stateless session bean get intercepted using AspectJ, at the back-end. I already able to intercept(at the back-end) if the call is from local interface using
pointcut interceptLocal(): call(* LocalInterface.*(..)) but pointcut interceptRemote:call(* RemoteInterface.*(..)) will intercept in the front-end. So how can I make sure that the interception happen in the back-end. Can pointcut that will intercept the remote call first and then intercept my stateless bean do that? If yes how? Regards, -- Khairul Anwar
_______________________________________________ aspectj-users mailing list aspectj-users@eclipse.org https://dev.eclipse.org/mailman/listinfo/aspectj-users