Package org.apache.wicket.security.examples.multilogin.authentication

Examples of org.apache.wicket.security.examples.multilogin.authentication.Level0Context


      private static final long serialVersionUID = 1L;

      @Override
      public boolean signIn(String username, String password)
      {
        LoginContext ctx = new Level0Context(username, password);
        try
        {
          ((WaspSession) getSession()).login(ctx);
        }
        catch (LoginException e)
View Full Code Here


   * @see org.apache.wicket.security.examples.MultiUsableApplication#getLogoffContext()
   */
  @Override
  public LoginContext getLogoffContext()
  {
    return new Level0Context();
  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.security.examples.multilogin.authentication.Level0Context

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.