| 123456789101112131415161718192021222324252627282930313233 |
- package controllers;
- import play.mvc.*;
- import views.html.*;
- /**
- * This controller contains an action to handle HTTP requests
- * to the application's home page.
- */
- public class EventsController extends Controller {
- public Result get()
- {
- return notFound();
- }
- public Result create()
- {
- return notFound();
- }
- public Result update(long id)
- {
- return notFound();
- }
- public Result delete(long id)
- {
- return notFound();
- }
- }
|