Class AopUtils


  • public class AopUtils
    extends java.lang.Object
    Utility class to assist with AOP operations.
    Author:
    Marvin S. Addison, Misagh Moayyed
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static org.aspectj.lang.JoinPoint unWrapJoinPoint​(org.aspectj.lang.JoinPoint point)
      Unwraps a join point that may be nested due to layered proxies.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • unWrapJoinPoint

        public static org.aspectj.lang.JoinPoint unWrapJoinPoint​(org.aspectj.lang.JoinPoint point)
        Unwraps a join point that may be nested due to layered proxies.
        Parameters:
        point - Join point to unwrap.
        Returns:
        Innermost join point; if not nested, simply returns the argument.