Class AopUtils


  • public class AopUtils
    extends java.lang.Object
    Utility class to assist with AOP operations.
    Since:
    3.4
    • Constructor Summary

      Constructors 
      Constructor Description
      AopUtils()  
    • 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
    • Constructor Detail

      • AopUtils

        public AopUtils()
    • 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, returns the argument.