Package org.araneaframework.core

Examples of org.araneaframework.core.StandardEnvironment


    httpSession = new MockHttpSession();
   
    Map map = new HashMap();
    map.put(HttpSession.class, httpSession);
   
    MockLifeCycle.begin(service, new StandardEnvironment(null, map));
   
    req = new MockHttpServletRequest();
    res = new MockHttpServletResponse();
   
    input = new StandardServletInputData(req);
View Full Code Here


  public void setUp() throws Exception {   
    topWidget = new MockCallableWidget();
    childWidget = new MockCallableWidget();
    childWidget2 = new MockCallableWidget();
   
    env = new StandardEnvironment(null, null);
   
    stackWidget = new StandardFlowContainerWidget(topWidget);
    stackWidget._getComponent().init(env);
  }
View Full Code Here

    transHelper = new StandardTransactionHelper();
   
    Map entries = new HashMap();
    entries.put(TransactionContext.class, this);
   
    childWidget._getComponent().init(new StandardEnvironment(getChildWidgetEnvironment(), entries));
   
    log.debug("Transactional filter widget initialized.");
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.core.StandardEnvironment

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.