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.os890.ds.addon.spring.impl.CdiSpringScope.java

@Exclude
public class CdiSpringScope implements Scope {
    private volatile BeanManager beanManager;
    private final BeanManager fallbackBeanManager;
    private final Map<String, Bean<?>> cdiBeansForSpringRegistration;

From source file org.jdal.vaadin.beans.VaadinScope.java

/**
 * Spring scope for Vaadin.
 * 
 * @author Jose Luis Martin
 * @since 2.0
 */

From source file guru.qas.martini.scope.ScenarioScope.java

@SuppressWarnings("WeakerAccess")
@Component
public class ScenarioScope implements Scope {

    protected static final InheritableThreadLocal<Map<String, Object>> SCOPE_REF = new InheritableThreadLocal<Map<String, Object>>() {
        @Override

From source file org.vader.common.spring.TransactionScope.java

/**
 * @author Vadim Baranov
 */
public class TransactionScope implements Scope {
    private static final Logger LOG = LoggerFactory.getLogger(TransactionScope.class);

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

import java.util.concurrent.ConcurrentHashMap;

/**
 * Implementation of Spring's {@link org.springframework.beans.factory.config.Scope} contract.
 * Registered by default as the scope {@code ui}.
 *

From source file com.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}".

From source file spring.osgi.context.internal.OsgiBundleScope.java

/**
 * OSGi bundle {@link org.springframework.beans.factory.config.Scope}
 * implementation.
 * <p/>
 * Will allow per--calling-bundle object instance, thus this scope becomes
 * useful when enabled on localBeans exposed as OSGi services.

From source file org.ehoffman.aopalliance.extensions.scope.STScope.java

/**
 * A simple thread-backed {@link Scope} implementation.
 *
 * <p><strong>Note:</strong> {@code SimpleThreadScope} <em>does not clean up
 * any objects</em> associated with it. As such, it is typically preferable to
 * use RequestScope

From source file org.springframework.osgi.context.support.internal.OsgiBundleScope.java

/**
 * OSGi bundle {@link org.springframework.beans.factory.config.Scope}
 * implementation.
 * 
 * Will allow per--calling-bundle object instance, thus this scope becomes
 * useful when enabled on localBeans exposed as OSGi services.

From source file com.google.code.rees.scope.spring.ConversationScope.java

/**
 * This custom scope must be configured in a Spring XML context.
 * It allows for conversation-scoped beans to be injected by the Spring IoC.
 * 
 * @author rees.byars
 */