Package net.fqsc.inscriptions.controller.identification

Examples of net.fqsc.inscriptions.controller.identification.SignInSession


  }
 
 
  private void login(final String username, final String password)
  {
    final SignInSession session = (SignInSession)this.getSession();
   
    if (session.authenticate(username, password))
    { 
      if (!this.continueToOriginalDestination())
      {       
        final Map<String, Object> map = new HashMap<String, Object>();
        map.put("Oid", session.getUser().getPersonneOid());       
        this.setResponsePage(new HomePage(DisplayPersonnePanel.class, map));     
      }
    }
    else
    {
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.controller.identification.SignInSession

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.