KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > tool > archive > PropertyKeys


1
2 /*
3  * Enhydra Java Application Server Project
4  *
5  * The contents of this file are subject to the Enhydra Public License
6  * Version 1.1 (the "License"); you may not use this file except in
7  * compliance with the License. You may obtain a copy of the License on
8  * the Enhydra web site ( http://www.enhydra.org/ ).
9  *
10  * Software distributed under the License is distributed on an "AS IS"
11  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
12  * the License for the specific terms governing rights and limitations
13  * under the License.
14  *
15  * The Initial Developer of the Enhydra Application Server is Lutris
16  * Technologies, Inc. The Enhydra Application Server and portions created
17  * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
18  * All Rights Reserved.
19  *
20  * Contributor(s):
21  * Paul Mahar
22  *
23  */

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