/*
* ------------------------------------------------------------------------------
* Hermes FTP Server
* Copyright (c) 2005-2014 Lars Behnke
* ------------------------------------------------------------------------------
*
* This file is part of Hermes FTP Server.
*
* Hermes FTP Server is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Hermes FTP Server is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Hermes FTP Server; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* ------------------------------------------------------------------------------
*/
package com.apporiented.hermesftp.console;
/**
* Common constants used in the console package.
*
* @author Administrator
*/
public class ConsoleConstants {
/**
* Administrator role. User that were granted this role may access the web console.
*/
public static final String ROLE_ADMIN = "admin";
static final String TH_END_TAG = "</th>";
static final String TH_START_TAG = "<th>";
static final String TR_START_TAG = "<tr>";
static final String TABLE_START_TAG = "<table>";
static final String TR_START_TAG_CLASS_A = "<tr class=\"a\">";
static final String TR_START_TAG_CLASS_B = "<tr class=\"b\">";
static final String TABLE_END_TAG = "</table>";
static final String TR_END_TAG = "</tr>";
static final String TD_START_TAG_NUM = "<td class=\"number\">";
static final String TD_START_TAG = "<td>";
static final String TD_END_TAG = "</td>";
}