Example usage for org.apache.wicket.request.cycle IRequestCycleListener interface-usage

List of usage examples for org.apache.wicket.request.cycle IRequestCycleListener interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.request.cycle IRequestCycleListener interface-usage.

Usage

From source file com.francetelecom.clara.cloud.presentation.ExecutionHandlerRequestCycle.java

/**
 * Exception handler to display messages Updated : $LastChangedDate$
 * 
 */
public class ExecutionHandlerRequestCycle implements IRequestCycleListener {
    /**

From source file net.databinder.DBRequestCycleListener.java

/**
 * <p>Opens Hibernate sessions and transactions as required and closes them at a request's
 * end. Uncomitted transactions are rolled back. Uses keyed Hibernate session factories from
 * Databinder service.</p>
 * @see Databinder
 * @author Nathan Hamblen

From source file org.brixcms.web.BrixRequestCycleProcessor.java

public class BrixRequestCycleProcessor implements IRequestCycleListener {
    public static final String WORKSPACE_PARAM = Brix.NS_PREFIX + "workspace";

    private static final String COOKIE_NAME = "brix-revision";

    private static final MetaDataKey<String> WORKSPACE_METADATA = new MetaDataKey<String>() {

From source file org.hippoecm.frontend.http.CsrfPreventionRequestCycleListener.java

/**
 * Prevents CSRF attacks on Wicket components by checking the {@code Origin} HTTP header for cross
 * domain requests. By default only checks requests that try to perform an action on a component,
 * such as a form submit, or link click.
 * <p>
 * <h3>Installation</h3>