Annotation Type RequestAction


@Inherited @Documented @Target(METHOD) @Retention(RUNTIME) public @interface RequestAction
Adds an Invoke to the current rule. This will invoke the annotated method if the rule matches.
 @Join(path = "/user/{id}", to = "/user-details.html")
 public class MyClass {
 
   @RequestAction
   public void loadData() {
     // do something
   }
 
 }
 
Author:
Christian Kaltepoth