1 | /* |
2 | |
3 | Derby - Class org.apache.derby.iapi.services.info.PropertyNames |
4 | |
5 | Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable. |
6 | |
7 | Licensed under the Apache License, Version 2.0 (the "License"); |
8 | you may not use this file except in compliance with the License. |
9 | You may obtain a copy of the License at |
10 | |
11 | http://www.apache.org/licenses/LICENSE-2.0 |
12 | |
13 | Unless required by applicable law or agreed to in writing, software |
14 | distributed under the License is distributed on an "AS IS" BASIS, |
15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
16 | See the License for the specific language governing permissions and |
17 | limitations under the License. |
18 | |
19 | */ |
20 | |
21 | package org.apache.derby.iapi.services.info; |
22 | |
23 | /** |
24 | This class defines the names of the properties to use when |
25 | you extract the parts of a product version from a properties |
26 | file. |
27 | */ |
28 | public abstract class PropertyNames |
29 | { |
30 | public final static String |
31 | PRODUCT_VENDOR_NAME = "derby.product.vendor", |
32 | PRODUCT_TECHNOLOGY_NAME = "derby.product.technology.name", |
33 | PRODUCT_EXTERNAL_NAME = "derby.product.external.name", |
34 | PRODUCT_EXTERNAL_VERSION = "derby.product.external.version", |
35 | PRODUCT_MAJOR_VERSION = "derby.version.major", |
36 | PRODUCT_MINOR_VERSION = "derby.version.minor", |
37 | PRODUCT_MAINT_VERSION = "derby.version.maint", |
38 | PRODUCT_DRDA_MAINT_VERSION = "derby.version.drdamaint", |
39 | PRODUCT_BETA_VERSION = "derby.version.beta", |
40 | PRODUCT_BUILD_NUMBER = "derby.build.number", |
41 | PRODUCT_WHICH_ZIP_FILE = "derby.product.file"; |
42 | } |
43 | |