Skip to content

Instantly share code, notes, and snippets.

View felixbarny's full-sized avatar

Felix Barnsteiner felixbarny

View GitHub Profile
@felixbarny
felixbarny / gist:7026369
Created October 17, 2013 14:54
AspectJ disable join point
pointcut interceptionLocation(): executionOfSomethingInteresting() &&
if(InterceptorFramework.anythingSwitchedOnAnywhere);
Object around(): interceptionLocation() {
if (!InterceptorFramework.anythingToDoHere(thisJoinPointStaticPart)) {
return proceed();
}
// do stuff
}