List of usage examples for org.apache.wicket.authroles.authentication.panel SignInPanel SignInPanel
public SignInPanel(final String id)
From source file:com.barchart.kerberos.server.security.zLoginPage.java
License:Apache License
/** * Constructor//from www . j a v a 2 s . c om * * @param parameters * The page parameters */ public zLoginPage(final PageParameters parameters) { // That is all you need to add a logon panel to your application with // rememberMe // functionality based on Cookies. Meaning username and password are // persisted in a Cookie. // Please see ISecuritySettings#getAuthenticationStrategy() for details. add(new SignInPanel("signInPanel")); }
From source file:com.cubeia.backoffice.web.BackofficeSignInPage.java
License:Open Source License
public BackofficeSignInPage() { add(new SignInPanel("signInPanel")); }
From source file:de.codepitbull.security.LoginPage.java
License:Apache License
/** * Constructor//from w w w .j a v a 2 s .co m * * @param parameters * The page parameters */ public LoginPage(final PageParameters parameters) { add(new SignInPanel("signInPanel")); }
From source file:fi.ilmoeuro.membertrack.auth.ui.MtSignInPage.java
License:Open Source License
@Override protected void onInitialize() { super.onInitialize(); add(new SignInPanel("signInPanel")); }
From source file:net.mad.ads.manager.web.pages.SignInPage.java
License:Open Source License
public SignInPage(final PageParameters parameters) { add(new SignInPanel("signInPanel")); add(new Label("pageTitle", new StringResourceModel("page.title", this, null))); }
From source file:org.apache.karaf.webconsole.core.page.LoginPage.java
License:Apache License
public LoginPage(PageParameters parameters) { add(new SignInPanel("signIn")); }
From source file:org.yafra.wicket.admin.AdminSignIn.java
License:Apache License
/** * Constructor//from w w w.j av a 2s . c om * * @param parameters * The page parameters */ public AdminSignIn(final PageParameters parameters) { // That is all you need to add a logon panel to your application with rememberMe // functionality based on Cookies. Meaning username and password are persisted in a Cookie. // Please see ISecuritySettings#getAuthenticationStrategy() for details. add(new SignInPanel("signInPanel")); }