I don't understand the meaning of @With
annotation in Play Java.
We have the same question in StackOverflow that seems to be Play1, not Play2.
And in Play's document of the latest version, I saw this example.
@With(VerboseAction.class)
public Result verboseIndex() {
return ok("It works!"); }
What does it mean? In the above case, what is the difference between with the annotation and without the annotation?