Move all AJAX handlers to the same directory as the HTML handlers.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / GetTranslationPage.java
index 21ec083..36327ca 100644 (file)
@@ -27,9 +27,6 @@ import net.pterodactylus.util.json.JsonObject;
  */
 public class GetTranslationPage extends JsonPage {
 
-       /** The Sone web interface. */
-       private WebInterface webInterface;
-
        /**
         * Creates a new translation page.
         *
@@ -37,18 +34,29 @@ public class GetTranslationPage extends JsonPage {
         *            The Sone web interface
         */
        public GetTranslationPage(WebInterface webInterface) {
-               super("ajax/getTranslation.ajax");
-               this.webInterface = webInterface;
+               super("getTranslation.ajax", webInterface);
        }
 
+       //
+       // JSONPAGE METHODS
+       //
+
        /**
         * {@inheritDoc}
         */
        @Override
        protected JsonObject createJsonObject(Request request) {
                String key = request.getHttpRequest().getParam("key");
-               String translation = webInterface.l10n().getString(key);
-               return new JsonObject().put("value", translation);
+               String translation = webInterface.getL10n().getString(key);
+               return createSuccessJsonObject().put("value", translation);
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       protected boolean needsFormPassword() {
+               return false;
        }
 
 }