View Javadoc
1 /* 2 * PROJECT : DAR Runtime and Tools 3 * COPYRIGHT : Copyright (C) 1999-2004 tim.stephenson@enableit.org 4 * LICENSE : GNU LESSER GENERAL PUBLIC LICENSE 5 * Version 2.1, February 1999 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; either version 2 of the License, or 10 * (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 */ 21 package org.enableit.db.darrt; 22 23 /*** 24 * Constants employed within the darrt library. 25 * @author Tim Stephenson 26 */ 27 public interface Globals { 28 29 /*** 30 * Key used to store a <code>List</code> of operators recognised 31 * in servlet context. 32 */ 33 String OPERATOR_LIST = "org.enableit.db.darrt.OPERATOR_LIST"; 34 35 /*** 36 * Key used to store a <code>Map</code> of <code>Database</code> instances 37 * in servlet context. Keys to the map will be a DataSource identifier. 38 */ 39 String DATABASE = "org.enableit.db.darrt.DATABASE"; 40 41 /*** 42 * Key used to store a <code>Map</code> of XML strings 43 * in servlet context. Keys to the map will be a DataSource identifier. 44 */ 45 String DATABASE_XML = "org.enableit.db.darrt.DATABASE_XML"; 46 47 /*** 48 * Key used to store a completed dar file. 49 */ 50 String DAR = "org.enableit.db.darrt.DAR"; 51 52 /*** 53 * Key used to store an override to the logical name of the URL to forward to. 54 */ 55 String FORWARD_TO = "org.enableit.db.darrt.FORWARD_TO"; 56 57 /*** 58 * Key used to store available data source names in servlet context. 59 */ 60 String DATA_SOURCE_NAMES = "org.enableit.db.darrt.DATA_SOURCE_NAMES"; 61 62 /*** 63 * Key used to indicate if schema is stale. 64 */ 65 String FORCE_SCHEMA_REFRESH = "org.enableit.db.darrt.FORCE_SCHEMA_REFRESH"; 66 67 /*** 68 * Value used to indicate if schema is stale. 69 */ 70 String FORCE_SCHEMA_REFRESH_TRUE = "on"; 71 72 /*** 73 * CVS info ABOUT this class and its current version 74 */ 75 String ABOUT = "$Revision: 1.8 $"; 76 }

This page was automatically generated by Maven