Class CachePutMethodAdvice

    • Constructor Summary

      Constructors 
      Constructor Description
      CachePutMethodAdvice​(org.jsr107.ri.annotations.CacheContextSource<MethodInvocation> cacheContextSource)
      Single constructor of this class.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void advise​(MethodInvocation invocation)
      Advise the method, usually invoking MethodInvocation.proceed() at some point.
      org.jsr107.ri.annotations.InterceptorType getInterceptorType()  
      protected java.lang.Object proceed​(MethodInvocation invocation)  
      • Methods inherited from class org.jsr107.ri.annotations.AbstractCachePutInterceptor

        cachePut, cacheValue
      • Methods inherited from class org.jsr107.ri.annotations.AbstractKeyedCacheInterceptor

        getStaticCacheKeyInvocationContext
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • advise

        public void advise​(MethodInvocation invocation)
        Description copied from interface: MethodAdvice
        Advise the method, usually invoking MethodInvocation.proceed() at some point. The advice is free to inspect and even replace parameters. Most Aspects will then invoke MethodInvocation.proceed(). The advice may then inspect and replace any checked thrown exceptions. Some advice (for example, caching) may selectively decide to bypass the invocation entirely, and instead invoke some other method or otherwise set a return value or thrown exception.
        Specified by:
        advise in interface MethodAdvice
        Parameters:
        invocation - identifies the method being invoked, including parameters
      • proceed

        protected java.lang.Object proceed​(MethodInvocation invocation)
                                    throws java.lang.Throwable
        Specified by:
        proceed in class org.jsr107.ri.annotations.AbstractCacheInterceptor<MethodInvocation>
        Throws:
        java.lang.Throwable