001 package org.apache.ojb.broker.util;
002
003 /* Copyright 2002-2005 The Apache Software Foundation
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 * http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017
018 /**
019 *
020 * The Interface Version holds OJB versioning information.
021 * The $ ENTRY $ placeholders are replaced by the OJB preprocessor
022 * with the settings configured in build.properties.
023 *
024 * @author Thomas Mahler
025 * @version $Id: Version.java,v 1.1 2007-08-24 22:17:36 ewestfal Exp $
026 */
027
028 public interface Version {
029
030 /**
031 * The full qualified OJB release string.
032 * consists of OJB_VERSION_MAJOR . OJB_VERSION_MINOR . OJB_VERSION_BUILD
033 */
034 public static final String OJB_VERSION_FULLQUALIFIED = "1.0.4";
035
036 /**
037 * The OJB major version number
038 */
039 public static final String OJB_VERSION_MAJOR = "1";
040
041 /**
042 * The OJB minor version number
043 */
044 public static final String OJB_VERSION_MINOR = "0";
045
046 /**
047 * The OJB build number
048 */
049 public static final String OJB_VERSION_BUILD = "4";
050
051 /**
052 * The timestamp of the current release
053 */
054 public static final String OJB_VERSION_DATE = "2005-12-30";
055 }