Example usage for org.springframework.core PriorityOrdered interface-usage

List of usage examples for org.springframework.core PriorityOrdered interface-usage

Introduction

In this page you can find the example usage for org.springframework.core PriorityOrdered interface-usage.

Usage

From source file com.asual.summer.core.resource.AbstractResource.java

/**
 * 
 * @author Rostislav Hristov
 *
 */
public abstract class AbstractResource implements PriorityOrdered {

From source file org.makersoft.log.LoggerAnnotationBeanPostProcessor.java

/**
 * Logger.
 */
public class LoggerAnnotationBeanPostProcessor extends InstantiationAwareBeanPostProcessorAdapter
        implements MergedBeanDefinitionPostProcessor, PriorityOrdered, BeanFactoryAware {

From source file uk.org.iay.mdq.server.MVCConfigurationPostProcessor.java

/**
 * Spring's default behavior is to decode the URL passed to it by the
 * container, and then parse the path into components on "/" characters.
 * This means you can't use URL-encoded "/" characters (%2f) within
 * identifiers.
 * 

From source file org.piraso.server.ContextLoggerBeanProcessor.java

/**
 * Defines an interface for context logger bean processor.
 */
public interface ContextLoggerBeanProcessor<T> extends BeanPostProcessor, PriorityOrdered {

    /**

From source file uk.ac.jisc.saml.mdman.controller.beans.MVCConfigurationPostProcessor.java

/**
 * Spring's default behavior is to decode the URL passed to it by the container,
 * and then parse the path into components on "/" characters. This means you
 * can't use URL-encoded "/" characters (%2f) within identifiers.
 *
 * See, for example, https://jira.springsource.org/browse/SPR-11101

From source file com.joel1di1.spring.jndi.initializer.JndIInitializerWithPriority.java

public class JndIInitializerWithPriority extends JndiInitializer
        implements BeanFactoryPostProcessor, PriorityOrdered {

    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {
        try {

From source file com.apporiented.spring.override.PropertyOverrideProcessor.java

/**
 * BeanFactoryPostProcessor that overrides properties of a bean that has been
 * defined elsewhere. You can use this class to customize beans defined by 
 * Riot modules without having to overwrite them completely. 
 * 
 * @author Felix Gnass [fgnass at neteye dot de]

From source file net.bull.javamelody.SpringRestTemplateBeanPostProcessor.java

/**
 * Post-processor Spring pour un ventuel {@link RestTemplate} dfini dans le fichier xml Spring.
 * @author Emeric Vernat
 */
public class SpringRestTemplateBeanPostProcessor implements BeanPostProcessor, PriorityOrdered {
    private static final boolean REST_TEMPLATE_INTERCEPTOR_AVAILABLE = isRestTemplateInterceptorAvailable();

From source file com.apporiented.spring.override.ListMergeProcessor.java

/**
 * Bean factory post processor that handles merging of lists.
 * @author Felix Gnass [fgnass at neteye dot de]
 */
public class ListMergeProcessor implements BeanFactoryPostProcessor, PriorityOrdered {

From source file com.apporiented.spring.override.MapMergeProcessor.java

/**
 * Bean factory post processor that handles merging maps.
 * @author Felix Gnass [fgnass at neteye dot de]
 */
public class MapMergeProcessor implements BeanFactoryPostProcessor, PriorityOrdered {