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.alfresco.repo.content.caching.CachingContentStore.java

/**
 * Implementation of ContentStore that wraps any other ContentStore (the backing store)
 * transparently providing caching of content in that backing store.
 * <p>
 * CachingContentStore should only be used to wrap content stores that are significantly
 * slower that FileContentStore - otherwise performance may actually degrade from its use.

From source file org.dbist.dml.AbstractDml.java

/**
 * @author Steve M. Jung
 * @since 2012. 1. 5. (version 0.0.1)
 */
public abstract class AbstractDml implements Dml, ApplicationContextAware, BeanNameAware, InitializingBean {
    private String dbType;

From source file org.metis.cassandra.Client.java

public class Client implements InitializingBean, DisposableBean, BeanNameAware, Processor {

    private static final Logger LOG = LoggerFactory.getLogger(Client.class);
    private boolean isRunning;
    private ClusterBean clusterBean;
    private Cluster cluster;

From source file sk.seges.acris.rpc.GWTRPCServiceExporter.java

/**
 * This component publishes an object (see {@link #setService(Object)}) as a
 * service to the GWT RPC protocol. Service targets can be:<p/>
 * <ul>
 * <li>POJOs which don't have to extend any class or implement any interface.
 * However you should provide a service interface (see

From source file org.infinispan.spring.support.embedded.InfinispanNamedEmbeddedCacheFactoryBean.java

/**
 * <p>
 * A {@link org.springframework.beans.factory.FactoryBean <code>FactoryBean</code>} for creating a native
 * {@link #setCacheName(String) named} INFINISPAN {@link org.infinispan.Cache <code>org.infinispan.Cache</code>}, 
 * delegating to a {@link #setInfinispanEmbeddedCacheManager(EmbeddedCacheManager) <code>configurable</code>} 
 * {@link org.infinispan.manager.EmbeddedCacheManager <code>org.infinispan.manager.EmbeddedCacheManager</code>}. If no

From source file org.gwtwidgets.server.spring.GWTRPCServiceExporter.java

/**
 * This component publishes an object (see {@link #setService(Object)}) as a
 * service to the GWT RPC protocol. Service targets can be:<p/>
 * <ul>
 * <li>POJOs which don't have to extend any class or implement any interface.
 * However you should provide a service interface (see

From source file org.metis.push.PusherBean.java

/**
 * A Spring MVC-loaded WebSocketHandler. The HandlerMapper invokes this bean to
 * service a web socket service request. This class represents a Spring MVC
 * Controller.
 * 
 */

From source file org.jasig.ssp.service.jobqueue.impl.JobServiceImpl.java

@Service
public class JobServiceImpl implements JobService, ApplicationContextAware, BeanNameAware {

    private static final Logger LOGGER = LoggerFactory.getLogger(JobServiceImpl.class);

    private final long startupTime = new Date().getTime();

From source file org.cloudfoundry.identity.uaa.provider.saml.idp.NonSnarlIdpMetadataManager.java

public class NonSnarlIdpMetadataManager extends IdpMetadataManager
        implements ExtendedMetadataProvider, InitializingBean, DisposableBean, BeanNameAware {
    private static final Log logger = LogFactory.getLog(NonSnarlIdpMetadataManager.class);

    private SamlServiceProviderConfigurator configurator;

From source file org.springframework.messaging.handler.invocation.reactive.AbstractMethodMessageHandler.java

/**
 * Abstract base class for reactive HandlerMethod-based message handling.
 * Provides most of the logic required to discover handler methods at startup,
 * find a matching handler method at runtime for a given message and invoke it.
 *
 * <p>Also supports discovering and invoking exception handling methods to process