Package org.strecks.controller.impl

Examples of org.strecks.controller.impl.TypedAfterInterceptor


  public void testInvalidAfterInterceptor() throws Exception
  {
    try
    {
      ControllerProcessorDelegateImpl delegate = new ControllerProcessorDelegateImpl();
      delegate.runAfterInterceptor("should be Integer", new TypedAfterInterceptor(), null, null);
      fail();
    }
    catch (ApplicationRuntimeException e)
    {
      assertEquals(e.getMessage(), "Action bean class java.lang.String is not compatible with " +
View Full Code Here

TOP

Related Classes of org.strecks.controller.impl.TypedAfterInterceptor

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.