-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: cies <[email protected]>
- Loading branch information
cies
authored and
cies
committed
Aug 8, 2023
1 parent
1a2edbf
commit ebdca2a
Showing
4 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package play.mvc; | ||
|
||
/** | ||
* Interface for play controllers with ActionContext provided to them by the {@link play.mvc.ActionInvoker}. | ||
* | ||
* This class your controllers should implement, when they need access to the {@link play.mvc.ActionContext}. | ||
* In most cases, you can extend {@link play.mvc.Controller} which provides a basic set of features | ||
* useful when implementing controllers. | ||
*/ | ||
public interface PlayContextController extends PlayController { | ||
void setContext(ActionContext actionContext); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters