Example usage for org.apache.wicket.markup.html.form StatelessForm subclass-usage

List of usage examples for org.apache.wicket.markup.html.form StatelessForm subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html.form StatelessForm subclass-usage.

Usage

From source file au.org.theark.web.pages.login.LoginForm.java

/**
 * <p>
 * The <code>LoginForm</code> class that extends the {@link org.apache.wicket.markup.html.form.Form Form} class. It provides the implementation of the
 * login form of The Ark application.
 * </p>
 * 

From source file com.example.justaddwater.components.LoginForm.java

/**
 * A form that POSTs directly to the LoginFormHandlerPage. Since LoginFormHandlerPage
 * is annotated with @RequireHttps, the form submission will go over SSL.
 *
 */
public class LoginForm extends StatelessForm {

From source file com.gitblit.wicket.SessionlessForm.java

/**
 * This class is used to create a stateless form that can POST or GET to a
 * bookmarkable page regardless of the pagemap and even after session expiration
 * or a server restart.
 *
 * The trick is to embed "wicket:bookmarkablePage" as a hidden field of the form.

From source file com.premiumminds.wicket.crudifier.form.StatelessCrudifierForm.java

public class StatelessCrudifierForm<T> extends StatelessForm<T> implements ICrudifierForm<T> {
    private static final long serialVersionUID = -1762699420685191222L;

    private ListControlGroups<T> listControlGroups;

    private CrudifierFormSettings formSettings;

From source file com.userweave.pages.user.registration.UserRegistrationForm.java

@SuppressWarnings("serial")
public abstract class UserRegistrationForm extends StatelessForm {

    private final WebMarkupContainer companyContainer;
    private final TextField company;

From source file com.userweave.pages.user.verification.UserVerificationForm.java

@SuppressWarnings("serial")
public abstract class UserVerificationForm extends StatelessForm {

    private final WebMarkupContainer container;

    private final Boolean isReceiveNews = false;

From source file de.agilecoders.wicket.core.markup.html.bootstrap.form.BootstrapStatelessForm.java

/**
 * Provides a StatelessForm which can be styled using the Bootstrap Behaviours
 * @author dbeer
 */
public class BootstrapStatelessForm<T> extends StatelessForm<T> {

From source file fiftyfive.wicket.shiro.markup.AbstractLoginForm.java

/**
 * A form that authenticates the user via Shiro when an email and password are submitted.
 * Also supports "remember me". Subclasses are expected to provide the actual markup and Wicket
 * components for the email and password fields. Refer to {@link LoginForm} for a reference
 * implementation.
 *

From source file lt.inventi.wicket.shiro.AbstractLoginForm.java

/**
 * A form that authenticates the user via Shiro when an email and password are
 * submitted. Also supports "remember me". Subclasses are expected to provide
 * the actual markup and Wicket components for the email and password fields.
 * <p>
 * Updated by @vadim to support Wicket 6.

From source file org.brixcms.web.nodepage.PageParametersForm.java

/**
 * Stateless form that allows {@link PageParametersAware} components to contribute state to URL after form submission.
 *
 * @param <T>
 * @author Matej Knopp
 */