| org.springframework.core.Ordered
All known Subclasses: org.springframework.scripting.support.ScriptFactoryPostProcessor, org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator, org.springframework.aop.support.DynamicMethodMatcherPointcutAdvisor, org.springframework.transaction.support.TransactionSynchronizationAdapter, org.springframework.orm.hibernate.SpringSessionSynchronization, org.springframework.web.servlet.view.XmlViewResolver, org.springframework.web.servlet.view.UrlBasedViewResolver, org.springframework.web.servlet.view.BeanNameViewResolver, org.springframework.aop.support.AbstractPointcutAdvisor, org.springframework.aop.support.StaticMethodMatcherPointcutAdvisor, org.springframework.aop.aspectj.AspectJPointcutAdvisor, org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor, org.springframework.web.portlet.handler.SimpleMappingExceptionResolver, org.springframework.web.portlet.handler.AbstractHandlerMapping, org.springframework.beans.factory.config.CustomEditorConfigurer, org.springframework.web.servlet.view.ResourceBundleViewResolver, org.springframework.orm.hibernate3.SpringSessionSynchronization, org.springframework.beans.factory.config.CustomScopeConfigurer, org.springframework.web.servlet.handler.SimpleMappingExceptionResolver, org.springframework.web.servlet.handler.AbstractHandlerMapping, org.springframework.aop.support.DefaultIntroductionAdvisor, org.springframework.beans.factory.config.PropertyResourceConfigurer,
Ordered | public interface Ordered (Code) | | Interface that can be implemented by objects that should be
orderable, for example in a Collection.
The actual order can be interpreted as prioritization, with
the first object (with the lowest order value) having the highest
priority.
author: Juergen Hoeller since: 07.04.2003 See Also: OrderComparator See Also: org.springframework.core.annotation.Order |
Method Summary | |
int | getOrder() Return the order value of this object, with a
higher value meaning greater in terms of sorting.
Normally starting with 0 or 1, with
Ordered.LOWEST_PRECEDENCE indicating greatest. |
getOrder | int getOrder()(Code) | | Return the order value of this object, with a
higher value meaning greater in terms of sorting.
Normally starting with 0 or 1, with
Ordered.LOWEST_PRECEDENCE indicating greatest. Same order values will result in arbitrary
positions for the affected objects.
Higher value can be interpreted as lower priority,
consequently the first object has highest priority
(somewhat analogous to Servlet "load-on-startup" values).
Note that order values below 0 are reserved for framework
purposes. Application-specified values should always be 0 or
greater, with only framework components (internal or third-party)
supposed to use lower values.
the order value See Also: Ordered.LOWEST_PRECEDENCE |
|
|