org.support.project.aop.Aspect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Common Library for support-project.org application
package org.support.project.aop;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* AOP(メソッドへ)
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.TYPE })
public @interface Aspect {
/**
* 実行するアドバイス
*
* @return Advice
*/
Class extends Advice> advice();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy