Example usage for org.springframework.beans.factory.xml BeanDefinitionDecorator interface-usage

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

Introduction

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

Usage

From source file org.jdal.aop.config.SerializableProxyBeanDefinitionDecorator.java

/**
 * Decorates bean definitions with serializable proxies.
 * 
 * @author Jose Luis Martin
 * @since 2.0
 */

From source file com.bstek.dorado.spring.ClassTypeListShortCutDecorator.java

/**
 * @author Benny Bao (mailto:benny.bao@bstek.com)
 * @since 2009-12-29
 */
public class ClassTypeListShortCutDecorator implements BeanDefinitionDecorator {
    private static final Log logger = LogFactory.getLog(ClassTypeListShortCutDecorator.class);

From source file com.bstek.dorado.spring.MapEntryShortCutDecorator.java

/**
 * @author Frank.Zhang (mailto:frank.zhang@bstek.com), Benny Bao
 *         (mailto:benny.bao@bstek.com)
 * @since Jun 25, 2009
 */
public class MapEntryShortCutDecorator implements BeanDefinitionDecorator {

From source file org.fishwife.jrugged.spring.config.PerformanceMonitorBeanDefinitionDecorator.java

/**
 * This class is invoked when Spring encounters the jrugged:perfmon attribute.
 * If the attribute is set to true, then it registers a BeanNameAutoProxyCreator
 * that gets associated with the SingleServiceWrapperInterceptor created by
 * the jrugged:methods attribute.
 */

From source file net.danielkvasnicka.flower.core.FlowerURLMappingBeanDefinitionDecorator.java

/**
 * A def. decorator that contains the logic executed when Spring
 * encounters the "url-mapping" attribute on a bean.
 * It stores the mapping to the mapping holder bean present in the current context.
 * 
 * @author Daniel Kvasnicka jr.

From source file com.mtgi.analytics.aop.config.v11.BtDataSourceBeanDefinitionDecorator.java

/** decorates the annotated datasource bean definition with behavior tracking */
public class BtDataSourceBeanDefinitionDecorator implements BeanDefinitionDecorator {

    public BeanDefinitionHolder decorate(Node node, BeanDefinitionHolder definition, ParserContext parserContext) {
        BeanDefinition delegate = definition.getBeanDefinition();
        BeanDefinitionBuilder wrapper = BeanDefinitionBuilder.rootBeanDefinition(DataSourceFactory.class);

From source file com.inspiresoftware.lib.dto.geda.config.XmlDrivenGeDABeanDefinitionParser.java

/**
 * .
 * <p/>
 * User: denispavlov
 * Date: Jan 25, 2012
 * Time: 4:12:57 PM

From source file org.fishwife.jrugged.spring.config.MonitorMethodInterceptorDefinitionDecorator.java

/**
 * This class is invoked when Spring encounters the jrugged:methods attribute
 * on a bean. It parses the attribute value with is a comma delimited list
 * of method names to wrap with the PerformanceMonitor. It tells Spring to
 * create a SingleServiceWrapperInterceptor named after the bean with
 * "PerformanceMonitorInterceptor" appended to the name. It also defines

From source file org.pentaho.platform.engine.core.system.objfac.spring.BeanPublishParser.java

/**
 * Parses the publish tag of a bean. Exposing the bean to the PentahoSystem as an implementation of the given type.
 * Beans can be published by a given type, as all implemented interfaces, as all inherited classes, a combination of all
 * classes and interfaces, or by default as the class of the bean itself.
 * <p/>
 * Attributes embedded in the publish tag become available to the PentahoSystem to allow for querying of registered

From source file org.xeustechnologies.jcl.spring.JclBeanDefinitionDecorator.java

/**
 * @author Kamran Zafar
 * 
 */
public class JclBeanDefinitionDecorator implements BeanDefinitionDecorator {