Package org.jboss.cache.interceptors

Examples of org.jboss.cache.interceptors.InvocationContextInterceptor


      assert txInterceptor.getNext().equals(invalidationInterceptor);
   }

   public void testGetInterceptorsWhichExtend()
   {
      InvocationContextInterceptor ic2 = (InvocationContextInterceptor) create(InvocationContextInterceptor.class);
      chain.appendIntereceptor(ic2);
      List<CommandInterceptor> result = chain.getInterceptorsWhichExtend(InvocationContextInterceptor.class);
      assert result.contains(icInterceptor);
      assert result.contains(ic2);
      assert result.size() == 2;
View Full Code Here


      assert txInterceptor.getNext().equals(invalidationInterceptor);
   }

   public void testGetInterceptorsWhichExtend()
   {
      InvocationContextInterceptor ic2 = (InvocationContextInterceptor) create(InvocationContextInterceptor.class);
      chain.appendIntereceptor(ic2);
      List<CommandInterceptor> result = chain.getInterceptorsWhichExtend(InvocationContextInterceptor.class);
      assert result.contains(icInterceptor);
      assert result.contains(ic2);
      assert result.size() == 2;
View Full Code Here

TOP

Related Classes of org.jboss.cache.interceptors.InvocationContextInterceptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.