com.enonic.xp.annotation.Order Maven / Gradle / Ivy
package com.enonic.xp.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Order of components. Some services use order. Lower the value - more priority.
*/
@Target(ElementType.TYPE)
@Retention(value = RetentionPolicy.RUNTIME)
public @interface Order
{
int value();
}