File tree Expand file tree Collapse file tree
src/main/java/org/juv25d/filter/annotation Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ package org .juv25d .filter .annotation ;
2+
3+ import java .lang .annotation .ElementType ;
4+ import java .lang .annotation .Retention ;
5+ import java .lang .annotation .RetentionPolicy ;
6+ import java .lang .annotation .Target ;
7+
8+ @ Target (ElementType .TYPE )
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface Global {
11+ int order () default 0 ;
12+ }
Original file line number Diff line number Diff line change 1+ package org .juv25d .filter .annotation ;
2+
3+ import java .lang .annotation .ElementType ;
4+ import java .lang .annotation .Retention ;
5+ import java .lang .annotation .RetentionPolicy ;
6+ import java .lang .annotation .Target ;
7+
8+ @ Target (ElementType .TYPE )
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface Route {
11+ String [] value ();
12+ int order () default 0 ;
13+ }
You can’t perform that action at this time.
0 commit comments