2 * FreenetSone - WebInterface.java - Copyright © 2010 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.web;
20 import freenet.clients.http.SessionManager;
21 import freenet.l10n.BaseL10n;
24 * Bundles functionality that a web interface of a Freenet plugin needs, e.g.
25 * references to l10n helpers.
27 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
29 public class WebInterface {
31 /** The node’s l10n helper. */
32 private final BaseL10n l10n;
34 /** The node’s session manager. */
35 private final SessionManager sessionManager;
38 * Creates a new web interface.
41 * The node’s l10n helper
42 * @param sessionManager
43 * The node’s session manager
45 public WebInterface(BaseL10n l10n, SessionManager sessionManager) {
47 this.sessionManager = sessionManager;
55 * Returns the l10n helper of the node.
57 * @return The node’s l10n helper
59 public BaseL10n l10n() {
64 * Returns the session manager of the node.
66 * @return The node’s session manager
68 public SessionManager sessionManager() {
69 return sessionManager;