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.springframework.context.support.SimpleThreadScope.java

/**
 * A simple thread-backed {@link Scope} implementation.
 *
 * <p><b>NOTE:</b> This thread scope is not registered by default in common contexts.
 * Instead, you need to explicitly assign it to a scope key in your setup, either through
 * {@link org.springframework.beans.factory.config.ConfigurableBeanFactory#registerScope}

From source file org.springframework.webflow.scope.AbstractWebFlowScope.java

/**
 * Base class for {@link Scope} implementations that access a Web Flow scope from the current request.
 * 
 * @author Keith Donald
 */
public abstract class AbstractWebFlowScope implements Scope {

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

/**
 * Base class for {@link Scope} implementations that access a MVC Faces scope from the current request.
 * 
 * @author Keith Donald
 * @author Phillip Webb
 */

From source file com.visural.domo.spring.TransactionScope.java

/**
 * Implements a transaction based Guice scope.
 * 
 * This code is pretty hard to explain as it tries to account for nested
 * transactions, including nested transactions that occur for different data
 * sources.

From source file org.vaadin.spring.internal.UIScope.java

/**
 * Implementation of Spring's {@link org.springframework.beans.factory.config.Scope} contract.
 * Registered by default as the scope {@code ui}.
 *
 * @author Josh Long (josh@joshlong.com)
 * @author Petter Holmstrm (petter@vaadin.com)

From source file org.jboss.spring.cluster.CacheScope.java

/**
 * Pojo cache scope.
 *
 * It enables plain spring beans to be clustered
 * via JBoss Pojo cache.
 *

From source file org.vaadin.spring.navigator.internal.VaadinViewScope.java

/**
 * Implementation of Spring's {@link org.springframework.beans.factory.config.Scope} that binds the views
 * and dependent beans to the visibility of the view, i.e. the scope is activated when a user navigates
 * into a view and destroyed when the user navigates out of the view.
 * Registered by default as the scope "{@value #VAADIN_VIEW_SCOPE_NAME}".
 *

From source file com.vaadin.spring.internal.ViewScopeImpl.java

/**
 * Implementation of Spring's
 * {@link org.springframework.beans.factory.config.Scope} that binds the views
 * and dependent beans to the visibility of the view, i.e. the scope is
 * activated when a user navigates into a view and destroyed when the user
 * navigates out of the view. Registered by default as the scope

From source file br.com.suricattus.surispring.spring.scope.ViewScope.java

/**
 * 
 * @author Lucas Lins
 *
 */
public class ViewScope implements Scope {

From source file org.vaadin.spring.internal.VaadinSessionScope.java

/**
 * Implementation of Spring's {@link org.springframework.beans.factory.config.Scope} that binds the beans to the
 * current {@link com.vaadin.server.VaadinSession} (as opposed to the current Servlet session). Registered by default
 * as the scope "{@value #VAADIN_SESSION_SCOPE_NAME}".
 *
 * @author Petter Holmstrm (petter@vaadin.com)