Package net.sf.jivalo.demo.app.controller.view

Examples of net.sf.jivalo.demo.app.controller.view.SisaankirjausViewCtrlImpl


  }
 
  public String kirjaudu() {
   
  SisaankirjausViewCtrlImpl s = (SisaankirjausViewCtrlImpl)getManagedBean("sisaankirjausViewCtrl", SisaankirjausViewCtrlImpl.class);
   
  //TODO authenticate with userid s.getUsername and s.getPassword
 
  // create new callcontext
 
  Map< String, Object > values = new HashMap< String, Object >();
  values.put(CallContext.USER_ID, s.getUsername());
  values.put(CallContext.LANGUAGE, "fi");
  newCallContext(values, "sisaankirjausViewCtrl", SisaankirjausViewCtrlImpl.class);
 
    String outcome = changePage( Page.COMMON_STARTUP_PAGE );
    return outcome;
View Full Code Here

TOP

Related Classes of net.sf.jivalo.demo.app.controller.view.SisaankirjausViewCtrlImpl

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.