Package org.jboss.ejb3.test.interceptors.inheritance

Examples of org.jboss.ejb3.test.interceptors.inheritance.MyInterface.method()


      MyInterface proxy = container.constructProxy(interfaces);
     
      ArrayList<Class<?>> interceptions = Interceptions.getAroundInvokes();
      assertEquals(0, interceptions.size());
     
      proxy.method();
     
      assertEquals(6,  interceptions.size());
      assertEquals(ClassBaseInterceptor.class, interceptions.get(0));
      assertEquals(ClassInterceptor.class, interceptions.get(1));
      assertEquals(MethodBaseInterceptor.class, interceptions.get(2));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.