Render templates in a thread-safe way.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / DeleteSonePage.java
index 4e63278..abe26ea 100644 (file)
@@ -19,6 +19,7 @@ package net.pterodactylus.sone.web;
 
 import net.pterodactylus.sone.data.Sone;
 import net.pterodactylus.sone.web.page.Page.Request.Method;
+import net.pterodactylus.util.template.DataProvider;
 import net.pterodactylus.util.template.Template;
 
 /**
@@ -39,7 +40,7 @@ public class DeleteSonePage extends SoneTemplatePage {
         *            The Sone web interface
         */
        public DeleteSonePage(Template template, WebInterface webInterface) {
-               super("deleteSone.html", template, "Page.DeleteSone.Title", webInterface);
+               super("deleteSone.html", template, "Page.DeleteSone.Title", webInterface, true);
        }
 
        //
@@ -50,27 +51,15 @@ public class DeleteSonePage extends SoneTemplatePage {
         * {@inheritDoc}
         */
        @Override
-       protected void processTemplate(Request request, Template template) throws RedirectException {
-               super.processTemplate(request, template);
+       protected void processTemplate(Request request, DataProvider dataProvider) throws RedirectException {
+               super.processTemplate(request, dataProvider);
                if (request.getMethod() == Method.POST) {
                        if (request.getHttpRequest().isPartSet("deleteSone")) {
                                Sone currentSone = getCurrentSone(request.getToadletContext());
-                               webInterface.core().deleteSone(currentSone);
+                               webInterface.getCore().deleteSone(currentSone);
                        }
                        throw new RedirectException("index.html");
                }
        }
 
-       //
-       // SONETEMPLATEPAGE METHODS
-       //
-
-       /**
-        * {@inheritDoc}
-        */
-       @Override
-       protected boolean requiresLogin() {
-               return true;
-       }
-
 }