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.opencredo.esper.spring.EsperTemplateBean.java

/**
 * Provides some convenient extensions to {@link EsperTemplate} when configuring
 * the template within a Spring environment.
 * 
 * @author Russ Miles (russ.miles@opencredo.com)
 * 

From source file org.springframework.messaging.support.channel.AbstractSubscribableChannel.java

/**
 * Abstract base class for {@link SubscribableChannel} implementations.
 *
 * @author Rossen Stoyanchev
 * @since 4.0
 */

From source file com.betfair.tornjak.monitor.ServiceMethodMonitor.java

/**
 * A convenience monitor to use on 'business' operation methods. These are methods which
 * third party client may call which we would like to be exposed in the 
 * diagnostics pages when they fail. However we do not want these failures
 * to cause the service to be marked as unavailable. But we do want fast
 * access to failing calls and the exception cause.

From source file fr.xebia.ws.travel.antifraud.v1_0.AntiFraudServiceDispatchingImpl.java

@Component("AntiFraudService")
@ManagedResource
public class AntiFraudServiceDispatchingImpl implements AntiFraudService, SelfNaming, BeanNameAware {

    @Autowired
    private AntiFraudService antiFraudService;

From source file org.voidengineer.springframework.cache.infinispan.InfinispanCacheFactoryBean.java

/**
 * {@link FactoryBean} that creates an Infinispan {@link Cache} instance representing
 * a named cache within an Infinispan {@link EmbeddedCacheManager}
 *
 * <p>Note: Requires Infinispan 4.1 or higher
 *

From source file fr.xebia.springframework.jdbc.ManagedBasicDataSource.java

/**
 * JMX enabled {@link BasicDataSource}.
 * 
 * @author <a href="mailto:cyrille@cyrilleleclerc.com">Cyrille Le Clerc</a>
 */
public class ManagedBasicDataSource extends BasicDataSource

From source file org.springdata.ehcache.config.EhcacheLookupFactoryBean.java

/**
 * Ehcache lookup by name or bean name
 * 
 * @author Alex Shvid
 * 
 */

From source file it.scoppelletti.programmerpower.web.security.CompositeAccessDecisionManager.java

/**
 * Controllore degli accessi.
 * 
 * <P>Il componente {@code CompositeAccessDecisionManager} estende le
 * funzionalit&agrave; del componente Spring {@code AffirmativeBased} con la
 * possibilit&agrave; di integrare la configurazione del controllo degli

From source file de.acosix.alfresco.utility.common.spring.ImplementationClassReplacingBeanFactoryPostProcessor.java

/**
 * {@link BeanFactoryPostProcessor Bean factory post processor} to alter the implementation class of a bean definition without requiring an
 * override that may conflict with custom Spring configuration.
 *
 * @author Axel Faust, <a href="http://acosix.de">Acosix GmbH</a>
 */

From source file org.springframework.integration.channel.FixedSubscriberChannel.java

/**
 * Specialized {@link SubscribableChannel} for a single final subscriber set up during bean instantiation (unlike
 * other {@link SubscribableChannel}s where the {@link MessageHandler} is subscribed when the endpoint
 * is started). This channel does not support interceptors or data types.
 * <p>
 * <b>Note: Stopping ({@link #unsubscribe(MessageHandler)}) the subscribed ({@link MessageHandler}) has no effect.</b>