ro.nextreports.engine.ReleaseInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nextreports-engine Show documentation
Show all versions of nextreports-engine Show documentation
NextReports Engine is a lightweight Java platform development library which
can be used to run NextReports inside your applications.
/* Created by JReleaseInfo AntTask from Open Source Competence Group */
/* Creation date Fri May 29 13:43:24 EEST 2015 */
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 1432896204815L). */
private static Date buildDate = new Date(1432896204815L);
/**
* Get buildDate (set during build process to Fri May 29 13:43:24 EEST 2015).
* @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-2015"). */
private static String copyright = "2008-2015";
/**
* Get copyright (set during build process to "2008-2015").
* @return String copyright
*/
public static final String getCopyright() { return copyright; }
/** version (set during build process to "8.1"). */
private static String version = "8.1";
/**
* Get version (set during build process to "8.1").
* @return String version
*/
public static final String getVersion() { return version; }
}