1234567891011121314151617181920212223242526 |
- package utils;
- import play.mvc.With;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * Declares a composing action that will check for a condition before deciding on whether to proceed with the request.
- */
- @With(PredicatedAction.class)
- @Target({ElementType.TYPE, ElementType.METHOD})
- @Retention(RetentionPolicy.RUNTIME)
- public @interface Predicated {
- /**
- * The condition.
- */
- Class<? extends Predicate> predicate();
- /**
- * The http status code to return if the condition fails.
- */
- int failed();
- }
|