com.dream.system.annotation.Provider Maven / Gradle / Ivy
The newest version!
package com.dream.system.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Provider {
Class type();
String method() default "";
}