Example usage for org.apache.wicket.util IProvider interface-usage

List of usage examples for org.apache.wicket.util IProvider interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.util IProvider interface-usage.

Usage

From source file RedisSessionStoreProvider.java

public class RedisSessionStoreProvider implements IProvider<ISessionStore> {

    @Override
    public ISessionStore get() {
        return new RedisSessionStore();
    }

From source file com.mastfrog.acteur.wicket.WicketApplicationInitializer.java

/**
 * Class which performs pre-initialization on the application - does the
 * same things that WicketFilter.init() does in a servlet-based container.
 *
 * @author Tim Boudreau
 */

From source file org.geoserver.web.GeoServerCryptProvider.java

/**
 * Returns an ICrypt that actually encrypts the urls, or not, depending on
 * the security manager settings
 * 
 * @author Andrea Aime - GeoSolutions
 */