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.tool.archive;
24:
25: //
26: public interface PropertyKeys {
27:
28: // jar
29: public final String PATH = "path.";
30: public final String LIBRARY_PROP = "library.";
31: public final String CLASS = "class.";
32: public final String CLASS_ROOT_PROP = ManifestKeys.CLASS_ROOT
33: .toLowerCase()
34: + ".";
35:
36: // war
37: public final String CONTENT_ROOT_PROP = ManifestKeys.CONTENT_ROOT
38: .toLowerCase()
39: + ".";
40: public final String CONTENT = "content.";
41:
42: // ear
43: public final String WEBAPP_CONTEXT_PROP = "webapp.context.";
44: public final String WEBAPP_MODULE_PROP = "webapp.module.";
45: public final String ENTERPRISE_MODULE_PROP = "enterprise.module.";
46: public final String APP_NAME_PROP = ManifestKeys.APP_NAME
47: .toLowerCase() + '.';
48: public final String APP_DESC_PROP = ManifestKeys.APP_DESC
49: .toLowerCase() + '.';
50:
51: public final String COPY_CLIENT_PROP = ManifestKeys.COPY_CLIENT
52: .toLowerCase()
53: + ".";
54: public final String ALT_DD_PROP = ManifestKeys.ALT_DD.toLowerCase()
55: + ".";
56: public final String META_DD_PROP = "app-meta-dd.";
57:
58: // ejb
59: public final String CREATE_CLIENT_PROP = ManifestKeys.CREATE_CLIENT
60: .toLowerCase()
61: + ".";
62: }
|