Uses of Interface
org.springframework.core.Ordered

Packages that use Ordered
org.springframework.aop.framework.autoproxy Bean post processors for use in ApplicationContexts to simplify AOP usage by automatically creating AOP proxies without the need to use a ProxyFactoryBean.  
org.springframework.aop.support Convenience classes for using Spring's AOP API. 
org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories. 
org.springframework.transaction.interceptor AOP-based solution for declarative transaction demarcation.  
org.springframework.transaction.support Support classes for the org.springframework.transaction package.  
org.springframework.web.context.support Classes supporting the org.springframework.web.context package, such as WebApplicationContext implementations, and a utility class for retrieval of the root application context etc. 
org.springframework.web.servlet.handler Provides standard HandlerMapping implementations, including abstract base classes for custom implementations. 
org.springframework.web.servlet.handler.metadata This package enables automatic web controller targeting.  
org.springframework.web.servlet.view Provides standard View and ViewResolver implementations, including abstract base classes for custom implementations.  
 

Uses of Ordered in org.springframework.aop.framework.autoproxy
 

Classes in org.springframework.aop.framework.autoproxy that implement Ordered
 class AbstractAdvisorAutoProxyCreator
          Abstract BeanPostProcessor implementation that creates AOP proxies.
 class AbstractAutoProxyCreator
          BeanPostProcessor implementation that wraps a group of beans with AOP proxies that delegate to the given interceptors before invoking the bean itself.
 class BeanNameAutoProxyCreator
          Auto proxy creator that identifies beans to proxy via a list of names.
 class DefaultAdvisorAutoProxyCreator
          BeanPostProcessor implementation that creates AOP proxies based on all candidate Advisors in the current BeanFactory.
 

Uses of Ordered in org.springframework.aop.support
 

Classes in org.springframework.aop.support that implement Ordered
 class AbstractPointcutAdvisor
          Abstract base class for PointcutAdvisor implementations.
 class DefaultIntroductionAdvisor
          Simple IntroductionAdvisor implementation that by default applies to any class.
 class DefaultPointcutAdvisor
          Convenient pointcut-driven advisor implementation.
 class DynamicMethodMatcherPointcutAdvisor
          Convenient superclass for Advisors that are also dynamic pointcuts.
 class NameMatchMethodPointcutAdvisor
          Convenient class for name-match method pointcuts that hold an Interceptor, making them an Advisor.
 class RegexpMethodPointcutAdvisor
          Convenient class for regexp method pointcuts that hold an Advice, making them an Advisor.
 class StaticMethodMatcherPointcutAdvisor
          Convenient superclass for Advisors that are also static pointcuts.
 

Uses of Ordered in org.springframework.beans.factory.config
 

Classes in org.springframework.beans.factory.config that implement Ordered
 class CustomEditorConfigurer
          BeanFactoryPostProcessor implementation that allows for convenient registration of custom property editors.
 class PreferencesPlaceholderConfigurer
          Subclass of PropertyPlaceholderConfigurer that supports J2SE 1.4's Preferences API (java.util.prefs).
 class PropertyOverrideConfigurer
          A property resource configurer that overrides bean property values in an application context definition.
 class PropertyPlaceholderConfigurer
          A property resource configurer that resolves placeholders in bean property values of context definitions.
 class PropertyResourceConfigurer
          Allows for configuration of individual bean property values from a property resource, i.e. a properties file.
 

Uses of Ordered in org.springframework.transaction.interceptor
 

Classes in org.springframework.transaction.interceptor that implement Ordered
 class TransactionAttributeSourceAdvisor
          Advisor driven by a TransactionAttributeSource, used to exclude a TransactionInterceptor from methods that are non-transactional.
 

Uses of Ordered in org.springframework.transaction.support
 

Classes in org.springframework.transaction.support that implement Ordered
 class TransactionSynchronizationAdapter
          Adapter for the TransactionSynchronization interface.
 

Uses of Ordered in org.springframework.web.context.support
 

Classes in org.springframework.web.context.support that implement Ordered
 class ServletContextPropertyPlaceholderConfigurer
          Subclass of PropertyPlaceholderConfigurer that resolves placeholders as ServletContext init parameters (that is, web.xml context-param entries).
 

Uses of Ordered in org.springframework.web.servlet.handler
 

Classes in org.springframework.web.servlet.handler that implement Ordered
 class AbstractHandlerMapping
          Abstract base class for HandlerMapping implementations.
 class AbstractUrlHandlerMapping
          Abstract base class for URL-mapped HandlerMapping implementations.
 class BeanNameUrlHandlerMapping
          Implementation of the HandlerMapping interface to map from URLs to beans with names that start with a slash ("/"), similar to how Struts maps URLs to action names.
 class SimpleMappingExceptionResolver
          Exception resolver that allows for mapping exception class names to view names, either for a list of given handlers or for all handlers in the DispatcherServlet.
 class SimpleUrlHandlerMapping
          Implementation of the HandlerMapping interface to map from URLs to request handler beans.
 

Uses of Ordered in org.springframework.web.servlet.handler.metadata
 

Classes in org.springframework.web.servlet.handler.metadata that implement Ordered
 class AbstractPathMapHandlerMapping
          Abstract implementation of the HandlerMapping interface that recognizes metadata attributes of type PathMap on application Controllers and automatically wires them into the current servlet's WebApplicationContext.
 class CommonsPathMapHandlerMapping
          Subclass of AbstractPathMapHandlerMapping that recognizes Commons Attributes metadata attributes of type PathMap on application Controllers and automatically wires them into the current servlet's WebApplicationContext.
 

Uses of Ordered in org.springframework.web.servlet.view
 

Classes in org.springframework.web.servlet.view that implement Ordered
 class BeanNameViewResolver
          Simple implementation of ViewResolver that interprets a view name as bean name in the current application context, i.e. in the XML file of the executing DispatcherServlet.
 class ResourceBundleViewResolver
          Implementation of ViewResolver that uses bean definitions in a ResourceBundle, specified by the bundle basename.
 class XmlViewResolver
          Implementation of ViewResolver that uses bean definitions in an XML file, specified by resource location.
 



Copyright (C) 2003-2004 The Spring Framework Project.