![JAR search and dependency download from the Maven repository](/logo.png)
play.mvc.Finally Maven / Gradle / Ivy
package play.mvc;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Mark this method as @Finally interceptor
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Finally {
/**
* Does not intercept these actions
*/
String[] unless() default {};
String[] only() default {};
/**
* Interceptor priority (0 is high priority)
*/
int priority() default 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy