Package org.strecks.controller.impl

Examples of org.strecks.controller.impl.TypedBeforeInterceptor


  public void testInvalidBeforeInterceptor() throws Exception
  {
    try
    {
      ControllerProcessorDelegateImpl delegate = new ControllerProcessorDelegateImpl();
      delegate.runBeforeInterceptor("should be Integer", new TypedBeforeInterceptor(), 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.TypedBeforeInterceptor

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.