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(); } }