Example usage for org.apache.wicket.authroles.authentication.panel SignInPanel SignInPanel

List of usage examples for org.apache.wicket.authroles.authentication.panel SignInPanel SignInPanel

Introduction

In this page you can find the example usage for org.apache.wicket.authroles.authentication.panel SignInPanel SignInPanel.

Prototype

public SignInPanel(final String id, final boolean includeRememberMe) 

Source Link

Usage

From source file:ca.travelagency.authentication.SignInPage.java

License:Apache License

public SignInPage() {
    SignInPanel signInPanel = new SignInPanel(SIGN_IN_PANEL, false);
    // FIXME getSession().invalidate(); does not remove the cookie
    //      SignInPanel signInPanel = new SignInPanel(SIGN_IN_PANEL);
    signInPanel.setRememberMe(false);//from   w  ww .  jav  a 2s .  c  o  m
    add(signInPanel);
}

From source file:com.apachecon.memories.session.SignIn.java

License:Apache License

public SignIn() {
    add(new SignInPanel("signIn", false));
}