Package org.dmrad.view.security

Examples of org.dmrad.view.security.AppSession


   * @return application session
   */
  protected ISessionFactory getSessionFactory() {
    return new ISessionFactory() {
      public Session newSession() {
        return new AppSession(App.this);
      }
    };
  }
View Full Code Here


    /**
     * Submits a user action.
     */
    protected void onSubmit() {
      AppSession appSession = (AppSession) getSession();
      if (appSession.isMemberLoggedIn()) {
        setResponsePage(app.getHomePage());
      } else if (appSession.authenticate(member.getCode(), member
          .getPassword())) {
        if (!continueToOriginalDestination()) {
          setResponsePage(app.getHomePage());
        }
      } else {
View Full Code Here

TOP

Related Classes of org.dmrad.view.security.AppSession

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.