001/*
002 * #%L
003 * Netarchivesuite - monitor
004 * %%
005 * Copyright (C) 2005 - 2014 The Royal Danish Library, the Danish State and University Library,
006 *             the National Library of France and the Austrian National Library.
007 * %%
008 * This program is free software: you can redistribute it and/or modify
009 * it under the terms of the GNU Lesser General Public License as
010 * published by the Free Software Foundation, either version 2.1 of the
011 * License, or (at your option) any later version.
012 * 
013 * This program is distributed in the hope that it will be useful,
014 * but WITHOUT ANY WARRANTY; without even the implied warranty of
015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
016 * GNU General Lesser Public License for more details.
017 * 
018 * You should have received a copy of the GNU General Lesser Public
019 * License along with this program.  If not, see
020 * <http://www.gnu.org/licenses/lgpl-2.1.html>.
021 * #L%
022 */
023
024package dk.netarkivet.monitor.webinterface;
025
026import dk.netarkivet.common.webinterface.SiteSection;
027import dk.netarkivet.monitor.Constants;
028import dk.netarkivet.monitor.registry.distribute.MonitorRegistryServer;
029
030/**
031 * Site section that creates the menu for system status.
032 */
033public class StatusSiteSection extends SiteSection {
034    /** The monitorRegistryServer used by this SiteSection. */
035    private MonitorRegistryServer monitorListener;
036
037    /**
038     * Create a new status SiteSection object.
039     */
040    public StatusSiteSection() {
041        super("sitesection;monitor", "Monitor", 1, new String[][] {{"JMXsummary", "pagetitle;monitor.summary"}},
042                "Status", Constants.TRANSLATIONS_BUNDLE);
043    }
044
045    /**
046     * Register monitor server when deploying.
047     */
048    public void initialize() {
049        monitorListener = MonitorRegistryServer.getInstance();
050    }
051
052    /**
053     * Shut down monitor server when undeploying.
054     */
055    public void close() {
056        if (monitorListener != null) {
057            monitorListener.cleanup();
058        }
059        monitorListener = null;
060    }
061}