com.github.cafdataprocessing.corepolicy.common.Version Maven / Gradle / Ivy
The newest version!
package com.github.cafdataprocessing.corepolicy.common;
/**
* Utility class template - to provide versioning information.
*/
public final class Version {
private static String VERSION="1.2.0-165";
private static String TIMESTAMP="2018-12-06T14:17:20Z";
private static String BUILDER="_belfast.builder";
public static String getCurrentVersion() {
return VERSION;
}
public static String getCurrentVersionInfo() {
return "Version: " + VERSION + " Timestamp: " + TIMESTAMP + " By: " + BUILDER;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy