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.ocelotds.spring.ClientScope.java

/**
 *
 * @author hhfrancois
 */
public class ClientScope implements Scope {

From source file net.beachchou.spring.ioc.CustomScope.java

/**
 *
 * @author beach
 */
public class CustomScope implements Scope {

From source file com.chortitzer.web.common.ViewScope.java

/**
 * This uses the FacesContext view map as a datastore for a scope in the Spring
 * Framework
 *
 * More simply this is a view scope implementation that works in spring
 *

From source file com.mycompany.CRMFly.AdditionalFeatures.ViewScope.java

public class ViewScope implements Scope {

    public Object get(String name, ObjectFactory objectFactory) {
        Map<String, Object> viewMap = FacesContext.getCurrentInstance().getViewRoot().getViewMap();

        if (viewMap.containsKey(name)) {

From source file com.pamarin.income.spring.ViewScope.java

public class ViewScope implements Scope {

    private static final Logger LOG = LoggerFactory.getLogger(ViewScope.class);

    private Map<String, Object> getViewMap() {
        return FacesContext.getCurrentInstance().getViewRoot().getViewMap();

From source file com.pamarin.cpe4235.hr.spring.ViewScope.java

public class ViewScope implements Scope {

    private static final Logger LOG = LoggerFactory.getLogger(ViewScope.class);

    private Map<String, Object> getViewMap() {
        return FacesContext.getCurrentInstance().getViewRoot().getViewMap();

From source file com.sunkur.springjavafxcontroller.scope.ScreenScope.java

/**
 *
 * @author Mehmet Sunkur <mehmetsunkur@gmail.com>
 */

public class ScreenScope implements Scope {

From source file org.carewebframework.api.spring.AbstractScope.java

/**
 * Abstract base scope for custom scopes.
 */
public abstract class AbstractScope implements Scope {

    /**

From source file be.kdg.repaircafe.scopes.ViewScope.java

public class ViewScope implements Scope {

    @Override
    public Object get(String name, ObjectFactory objectFactory) {
        Map<String, Object> viewMap = FacesContext.getCurrentInstance().getViewRoot().getViewMap();

From source file com.orange.cepheus.cep.tenant.TenantScope.java

/**
 * Custom scope to associate beans to the "tenant" scope.
 * It also associates the tenant context to the current thread.
 */
public class TenantScope implements Scope {