01: /*
02: * Copyright 2006 Luca Garulli (luca.garulli@assetdata.it)
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.romaframework.wizard;
18:
19: /**
20: * Public constants for Wizards.
21: *
22: * @author Luca Garulli (luca.garulli@assetdata.it)
23: */
24: public class WizardConstants {
25:
26: public final static String VERSION = "1.0 rc4";
27: public final static String COPYRIGHT = "Copyrights (c) 2006-2007 Luca Garulli";
28: public final static String LICENSE = "Apache 2.0 license. Free to use!";
29: public final static String HEADER = "ROMA Framework CONSOLE v."
30: + VERSION + " [http://www.romaframework.org]\n" + COPYRIGHT
31: + ". " + LICENSE;
32:
33: public static final String VAR_PROJECT_NAME = "project.name";
34: public static final String VAR_PROJECT_PATH = "project.path";
35: public static final String VAR_PROJECT_PACKAGE = "project.package";
36: public static final String VAR_PROJECT_PACKAGE_PATH = "project.package-path";
37:
38: public static final String VAR_CLASS_PACKAGE = "class.package";
39: public static final String VAR_DOMAIN_PACKAGE = "domain.package";
40: public static final String VAR_DOMAIN_CLASS = "domain.class";
41: public static final String VAR_CRUD_CLASS = "crud.class";
42:
43: public static final String PROJECT_TYPE_PREFIX = "project-";
44: public static final String CORE_MODULE_NAME = "core";
45: public static final String MODULE_PACKAGE_EXT = ".zip";
46: }
|