01: /*
02: * Enhydra Java Application Server Project
03: *
04: * The contents of this file are subject to the Enhydra Public License
05: * Version 1.1 (the "License"); you may not use this file except in
06: * compliance with the License. You may obtain a copy of the License on
07: * the Enhydra web site ( http://www.enhydra.org/ ).
08: *
09: * Software distributed under the License is distributed on an "AS IS"
10: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
11: * the License for the specific terms governing rights and limitations
12: * under the license.
13: *
14: * The Initial Developer of the Enhydra Application Server is Lutris
15: * Technologies, Inc. The Enhydra Application Server and portions created
16: * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
17: * All Rights Reserved.
18: *
19: * Contributor(s):
20: * Paul Mahar
21: *
22: */
23: package org.enhydra.kelp.common.node;
24:
25: //
26: public interface PropertyKeys {
27: public final static String NAME_WORKING_DIR = "WorkingDirectory"; // nores
28: public final static String NAME_AUTO_PACK = "enable.auto.packages"; // nores
29: public final static String NAME_LIBRARIES = "Libraries"; // nores
30: public final static String NAME_GENTO = "GenerateSourceToOutDir"; // nores
31: public final static String NAME_XMLC_CUSTOM = "enhydra.xmlc.custom"; // nores
32: public final static String NAME_XMLC_TYPE = "enhydra.xmlc.classNameType"; // nores
33: public final static String NAME_XMLC_OPTION_FILEPATH = "enhydra.xmlc.optionFile"; // nores
34: public final static String NAME_XMLC_PARAMETERS = "enhydra.xmlc.parameters"; // nores
35: public final static String NAME_SELECTED = "enhydra.selected"; // nores
36: public final static String NAME_RESOURCE_STATIC = "enhydra.resource.static"; // nores
37: public final static String VALUE_ENHYDRA = "Enhydra"; // nores
38:
39: // directory names
40: public final static String[] DEFAULT_CONTENT = { "css", "gif",
41: "jpg", "js", "jsp", "wbmp" }; // nores
42: public final static String PROP_PROJECT_ROOT = "enhydra.xmlc.project.root";
43: public final static String PROP_SRC_DIR = "enhydra.xmlc.src.dir";
44:
45: //
46: public final String XMLC_DOC_TYPES = "enhydra.xmlc.docTypes"; // nores
47: public final String XMLC_BUILD = "enhydra.xmlc.build"; // nores
48: public final String XMLC_PRINT_DOM = "enhydra.xmlc.printDOM"; // nores
49: public final String XMLC_PRINT_PARSE = "enhydra.xmlc.printParse"; // nores
50: public final String XMLC_PRINT_DOC = "enhydra.xmlc.printDoc"; // nores
51: public final String XMLC_VERBOSE = "enhydra.xmlc.verbose"; // nores
52: public final String XMLC_PRINT_ACCESSOR = "enhydra.xmlc.printAccessor"; // nores
53: public final String XMLC_OUTPUT_FILENAME = "enhydra.xmlc.outputToFilename"; // nores
54: public final String XMLC_MAP_PACKAGE_FROM = "enhydra.xmlc.map.package.fromFolder"; // nores
55: public final String XMLC_MAP_PACKAGE_TO = "enhydra.xmlc.map.package.toPackage"; // nores
56: public final String XMLC_MAP_PACKAGE_LENGTH = "enhydra.xmlc.map.package.length"; // nores
57: public final String XMLC_MAP_SCOPE = "enhydra.xmlc.map.scope"; // nores
58: public final String DEPLOY_CONTENT_TYPES = "enhydra.deploy.contentTypes"; // nores
59: public final String DEPLOY_CONTENT_ENABLE = "enhydra.deploy.content.enable"; // nores
60: public final String DEPLOY_RUN_ENABLE = "enhydra.deploy.run.enable"; // nores
61:
62: public final String DEPLOY_TYPE = "enhydra.deploy.type"; // nores
63: public final String DEPLOY_BUILD = "enhydra.deploy.build"; // nores
64: public final String DEPLOY_ECHO = "enhydra.deploy.echo"; // nores
65: public final String DEPLOY_OVERWRITE = "enhydra.deploy.overwrite"; // nores
66: public final String DEPLOY_PATH_ROOT = "enhydra.deploy.root"; // nores
67: public final String DEPLOY_PATH_BOOTSTRAP = "enhydra.deploy.bootstrap"; // nores
68: public final String DEPLOY_INPUT_FILTER = "enhydra.deploy.input.filter"; // nores
69: public final String DEPLOY_INPUT_ENABLE = "enhydra.deploy.input.enable"; // nores
70: public final String DEPLOY_PATH_INPUT = "enhydra.deploy.input"; // nores
71: public final String DEPLOY_PATH_RESOURCE = "enhydra.deploy.resource"; // nores
72: public final String DEPLOY_TABLE_LENGTH = "enhydra.deploy.table.length"; // nores
73: public final String DEPLOY_TABLE_FIND = "enhydra.deploy.table.find"; // nores
74: public final String DEPLOY_TABLE_REPLACE = "enhydra.deploy.table.replace"; // nores
75: public final String DEPLOY_STARTUP_JAVA = "enhydra.deploy.startup.java"; // nores
76: public final String DEPLOY_STARTUP_RUN = "enhydra.deploy.startup.run"; // nores
77: public final String ARCHIVE_PROPERTIES = "enhydra.archive.properties"; // nores
78: public final String AUTO_DEPLOY_FILE = "enhydra.deploy.file"; // nores
79: public final String DODS_BUILD = "enhydra.dods.build"; // nores
80: public final String DODS_TYPE = "enhydra.dods.type"; // nores
81: public final String DODS_PATH_ROOT = "enhydra.dods.root"; // nores
82: public final String DODS_OVERWRITE = "enhydra.dods.overwrite"; // nores
83: public final String DODS_PATH_BOOTSTRAP = "enhydra.dods.bootstrap"; // nores
84: public final String DODS_ECHO = "enhydra.dods.echo"; // nores
85: public final String NAME_DODS_PARAMETERS = "DodsParameters"; // nores
86: public final String NAME_DOML_FILEPATH = "DomlFilepath"; // nores
87: public final String DODS_PROJECT_JAVA_PATH = "enhydra.dods.java.project.path"; // nores
88: public final String DODS_ENHYDRA_PATH = "DodsEnhydraPath"; // nores
89: public final String NAME_DODS_ROOTPATH = "DodsRootPath"; // nores
90: public final String NAME_DODS_EXTENSION = "DodsExtension"; // nores
91:
92: }
|