Example usage for org.springframework.beans.factory BeanNameAware interface-usage

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

Introduction

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

Usage

From source file org.sakaiproject.metaobj.utils.ioc.FieldRetrievingFactoryBean.java

/**
 * FactoryBean which retrieves a static or non-static field value.
 * Typically used for retrieving public static final constants.
 * <p/>
 * <p>Usage example:
 * <p/>

From source file com.bstek.dorado.core.store.SqlBaseStoreSupport.java

/**
 * @author Benny Bao (mailto:benny.bao@bstek.com)
 * @since 2012-12-9
 */
public abstract class SqlBaseStoreSupport implements SqlBaseStore, BeanNameAware {
    private static final String BEAN_NAME_PREFIX = "dorado.sqlBaseStore.";

From source file edu.internet2.middleware.shibboleth.common.config.service.ServletContextAttributeExporter.java

/** A simple service that exports Spring beans into the Servlet context as an attribute. */
public class ServletContextAttributeExporter implements Service, ApplicationContextAware, BeanNameAware {

    /** Class logger. */
    private final Logger log = LoggerFactory.getLogger(ServletContextAttributeExporter.class);

From source file org.openspaces.core.map.MapFactoryBean.java

/**
 * Base class for different {@link com.j_spaces.map.IMap} factories. Uses the referenced space
 * (using {@link #setSpace(com.j_spaces.core.IJSpace)}) in order to build the map interface around
 * it.
 *
 * <p>Supports the cluster flag controlling if the map will work with a clustered view of the space

From source file org.alfresco.repo.cache.DefaultSimpleCache.java

/**
 * {@link SimpleCache} implementation backed by a {@link com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap}.
 * 
 * @author Matt Ward
 */
public final class DefaultSimpleCache<K extends Serializable, V extends Object>

From source file com.codecrate.shard.ui.event.commandbus.ApplicationWindowProgressMonitorActionCommandExecutor.java

public class ApplicationWindowProgressMonitorActionCommandExecutor
        implements ParameterizableActionCommandExecutor, ApplicationWindowAware, MessageSourceAware, BeanNameAware {
    private static final Log LOG = LogFactory.getLog(ApplicationWindowProgressMonitorActionCommandExecutor.class);
    private final ParameterizableActionCommandExecutor delegate;
    private MessageSource messageSource;
    private String messageKey;

From source file com.dc.gameserver.extComponents.Kit.springQuartz.MethodInvokingJobDetailFactoryBean.java

/**
 * This is a cluster safe Quartz/Spring FactoryBean implementation, which
 * produces a JobDetail implementation that can invoke any no-arg method on any
 * Class.
 * <p>
 * Use this Class instead of the MethodInvokingJobDetailBeanFactory Class

From source file com.azaptree.services.eventbus.impl.EventBusServiceImpl.java

/**
 * By default, the Spring bean name is used as the EventBus name.
 * 
 * Registers a DeadEvent event handler. Dead events are events that posted, but there are no registered subscribers for that
 * event type. When a DeadEvent is received, it logs a WARNING message.
 * 

From source file org.springframework.data.gemfire.support.AbstractFactoryBeanSupport.java

/**
 * The {@link AbstractFactoryBeanSupport} class is an abstract Spring {@link FactoryBean} base class implementation
 * encapsulating operations common to SDG's {@link FactoryBean} implementations.
 *
 * @author John Blum
 * @see org.apache.commons.logging.Log

From source file org.springframework.scheduling.concurrent.ExecutorConfigurationSupport.java

/**
 * Base class for classes that are setting up a
 * {@code java.util.concurrent.ExecutorService}
 * (typically a {@link java.util.concurrent.ThreadPoolExecutor}).
 * Defines common configuration settings and common lifecycle handling.
 *