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 com.griddynamics.banshun.fixtures.ChildImpl.java

public class ChildImpl implements BeanNameAware, Child {

    private String name;

    public void setBeanName(String name) {
        this.name = name;

From source file com.sshdemo.common.schedule.generate.quartz.EwcmsSimpleTriggerBean.java

/**
 * 
 * @author wuzhijun
 *
 */
public class EwcmsSimpleTriggerBean extends SimpleTriggerImpl

From source file org.zkybase.kite.AbstractGuard.java

/**
 * Abstract base class for implementing guards.
 * 
 * @author Willie Wheeler (willie.wheeler@gmail.com)
 * @since 1.0
 */

From source file edu.duke.cabig.c3pr.utils.DeferredLoadingFactoryBean.java

/**
 * This class iterates over a list of bean names, attempting to load each one from the application
 * context. It returns the first one that isn't null.
 * 
 * The purpose of this is to allow beans later in the list to be configured with lazy-init="true"
 * and never be loaded unless they are needed.

From source file org.bytesoft.bytetcc.supports.spring.aware.CompensableBeanNameAware.java

public interface CompensableBeanNameAware extends BeanNameAware {

    public String getBeanName();

}

From source file org.arrow.service.impl.BusinessConditionBean.java

@EventTrigger
public class BusinessConditionBean implements BusinessCondition, BeanNameAware {

    private String beanName;

    @Override

From source file com.github.xdcrafts.flower.spring.impl.AbstractNameAwareFactoryBean.java

/**
 * Abstract bean factory that aware of bean name.
 * @param <T> bean type
 */
public abstract class AbstractNameAwareFactoryBean<T> extends AbstractFactoryBean<T> implements BeanNameAware {

From source file gov.nih.nci.cabig.caaers.tools.spring.DeferredLoadingFactoryBean.java

/**
 * This class iterates over a list of bean names, attempting to load each one from the application
 * context. It returns the first one that isn't null.
 * 
 * The purpose of this is to allow beans later in the list to be configured with lazy-init="true"
 * and never be loaded unless they are needed.

From source file com.paxxis.cornerstone.common.BeanNameAwareConfigurable.java

/**
 * A configurable that automatically adds its bean name to the list of config prefixes for easy
 * targeting of its configuration in the database...
 *  
 * @author Matthew Pflueger
 */

From source file org.openmrs.module.kenyacore.AbstractDescriptor.java

/**
 * Abstract base class for all descriptors that are instantiated as beans and can be identified via their component
 * name.
 */
public abstract class AbstractDescriptor implements BeanNameAware, Descriptor {