/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* See LICENSE.txt included in this distribution for the specific
* language governing permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at LICENSE.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
*/
/**
* Utility class to get information of the OpenGrok version.
*
* @author Trond Norbye
*/
@SuppressWarnings("PMD.AvoidThrowingRawExceptionTypes")
public final class Info {
private static final long LAST_MODIFIED;
static {
try {
}
// RFC 8222 3.3 compliant
try {
} catch (ParseException e) {
} catch (NullPointerException e) {
}
} catch (IOException ioe) {
throw new RuntimeException(ioe);
} finally {
}
}
/**
* get major version
* @return major version
*/
return VERSION;
}
/**
* get full version (product vMajor revMinor)
* @return full version
*/
}
/**
* get minor version
* @return minor version
*/
return REVISION;
}
/**
* @return time of last modification in milliseconds since
* January 1, 1970, 00:00:00 GMT
*/
public static long getLastModified() {
return LAST_MODIFIED;
}
private Info() {
}
}