ro.nextreports.engine.ReleaseInfo Maven / Gradle / Ivy
/* Created by JReleaseInfo AntTask from Open Source Competence Group */
/* Creation date Tue Mar 01 11:12:40 EET 2016 */
package ro.nextreports.engine;
import java.util.Date;
/**
* This class provides information gathered from the build environment.
*
* @author JReleaseInfo AntTask
*/
public class ReleaseInfo {
/** buildDate (set during build process to 1456823560430L). */
private static Date buildDate = new Date(1456823560430L);
/**
* Get buildDate (set during build process to Tue Mar 01 11:12:40 EET 2016).
* @return Date buildDate
*/
public static final Date getBuildDate() { return buildDate; }
/** home (set during build process to "www.next-reports.com"). */
private static String home = "www.next-reports.com";
/**
* Get home (set during build process to "www.next-reports.com").
* @return String home
*/
public static final String getHome() { return home; }
/**
* Get buildNumber (set during build process to 0).
* @return int buildNumber
*/
public static final int getBuildNumber() { return 0; }
/** company (set during build process to "NextReports"). */
private static String company = "NextReports";
/**
* Get company (set during build process to "NextReports").
* @return String company
*/
public static final String getCompany() { return company; }
/** project (set during build process to "NextReports"). */
private static String project = "NextReports";
/**
* Get project (set during build process to "NextReports").
* @return String project
*/
public static final String getProject() { return project; }
/** copyright (set during build process to "2008-2016"). */
private static String copyright = "2008-2016";
/**
* Get copyright (set during build process to "2008-2016").
* @return String copyright
*/
public static final String getCopyright() { return copyright; }
/** version (set during build process to "9.1"). */
private static String version = "9.1";
/**
* Get version (set during build process to "9.1").
* @return String version
*/
public static final String getVersion() { return version; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy