Does anyone know how one would go about creating an aspect around the method "getName()" in a class that implements the interface java.security.Principal?
I am using spring and below is the pertinent parts of my Class:
@Aspect
public class MyPrincipalAspect {
@PointCut("(execution(* java.security.Principal.getName(..)))")
private void getNamePC(){}
@Around("getNamePC()")
public Object getNameJP(ProceedingJoinPoint pjp) throws Throwable {
Object retVal = pjp.proceed();
return retVal;
}
}
I actually want to do something with "retVal", however, I'm just using the above as a trivial example. I have other Aspects within my application and they all work just fine.
I read something on the AspectJ site regarding not being able to load-time weave classes from the java package, but they say it's still possible (but, they don't give any examples).
I've also tried going through a non-Spring approach (using an aop.xml file with javaagent defined in my app-server config params).
Any help is much appreciated.
Thanks.