All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blade.ioc.annotation.Order Maven / Gradle / Ivy

There is a newer version: 2.0.15.RELEASE
Show newest version
package com.blade.ioc.annotation;

import java.lang.annotation.*;

/**
 * Order By
 *
 * @author biezhi
 * @since 1.6.6
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Order {

    int value() default Integer.MAX_VALUE;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy