
net.cassite.pure.aop.AOP Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pure.ioc Show documentation
Show all versions of pure.ioc Show documentation
Lightweight type and annotation based dependency injection framework
The newest version!
package net.cassite.pure.aop;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Enables AOP feature of the class
*
* @author wkgcass
* @since 0.1.1
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface AOP {
/**
* @return net.cassite.pure.aop.Weaver
* @see net.cassite.pure.aop.Weaver
*/
@SuppressWarnings("rawtypes") Class[] value();
boolean useCglib() default false;
long timeoutMillis() default 0L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy