Example usage for org.springframework.beans.factory.config Scope interface-usage

List of usage examples for org.springframework.beans.factory.config Scope interface-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory.config Scope interface-usage.

Usage

From source file org.shredzone.cilla.admin.spring.ViewScope.java

/**
 * Implements a view scope for Spring.
 *
 * @author Richard "Shred" Krber
 */
public class ViewScope implements Scope {

From source file org.businessmanager.web.scope.ViewScope.java

/**
 * This is a custom scope implementation for spring. 
 * This scope behaves exactly as the well known CDI scope '@ViewScoped'.
 * 
 * @author Christian Ternes
 *

From source file devbury.threadscope.ThreadScopeManager.java

/**
 * Scope that binds thread scoped beans to a thread local.  This class functions in a similar way to
 * {@link org.springframework.context.support.SimpleThreadScope}.  The difference being ThreadScopeManager
 * supports destruction callbacks such as {@link javax.annotation.PreDestroy}.  If used in conjunction with {@link
 * devbury.threadscope.ThreadScopePropagatingScheduler} as an executor, tasks will be able to access the thread
 * scoped beans of the thread scheduling the task.

From source file com.btmatthews.atlas.tenancy.support.spring.TenantScope.java

/**
 * @author <a href="mailto:brian@btmatthews.com">Brian Thomas Matthews</a>
 * @since 1.1.0
 */
public final class TenantScope implements Scope {

From source file com.freebox.engeneering.application.system.ApplicationScope.java

/**
 * This class defines a vaadin application scope for spring beans.
 */
public class ApplicationScope implements Scope, DisposableBean {

    public static final String NAME = "applicationScope";

From source file org.newinstance.tnt.utility.SimpleMapScope.java

/**
 * This simple scope implementation uses an internal {@link Map} to hold objects
 * in the scope. This scope implementation can be used for testing beans which
 * should be kept in session or request scope for example.
 * <p>
 * To use this scope in your test cases, simply configure a

From source file com.siriusit.spezg.multilib.jsf.platform.ViewScope.java

/**
 * Created by IntelliJ IDEA. User: landssve Date: 09.sep.2010 Time: 19:28:04 To
 * change this template use File | Settings | File Templates.
 */
public class ViewScope implements Scope {
    @Override

From source file de.inetsource.jsfforum.config.ViewScope.java

/**
 *
 * @author Joerg Wiesmann joerg.wiesmann@gmail.com
 */
public class ViewScope implements Scope {

From source file org.granite.client.tide.spring.ViewScope.java

/**
 * @author William DRAI
 */
public class ViewScope implements Scope {

    // private static final Logger log = Logger.getLogger(ViewScope.class);

From source file org.springframework.faces.mvc.scope.CompositeScope.java

/**
 * Scope implementation that can be used to combine several existing implementations so that they can all be registered
 * with the same name. Use the {@link #add(Scope, ScopeAvailabilityFilter)} method to add scopes to the composite.
 * 
 * @author Phillip Webb
 */