001 /* Created by JReleaseInfo AntTask from Open Source Competence Group */ 002 /* Creation date Wed Mar 22 15:08:20 PST 2006 */ 003 package net.provision.soap; 004 005 import java.util.Date; 006 007 008 /** 009 * This class provides information gathered from the build environment. 010 * 011 * @author JReleaseInfo AntTask 012 */ 013 public class ReleaseInfo { 014 /** 015 * buildDate (set during build process to 1143068900736L). 016 */ 017 private static Date buildDate = new Date(1143068900736L); 018 019 /** 020 * displayDate (set during build process to "03-22-2006"). 021 */ 022 private static String displayDate = new String("03-22-2006"); 023 024 /** 025 * version (set during build process to "1"). 026 */ 027 private static String version = new String("1"); 028 029 /** 030 * webSite (set during build process to "http://www.provisiontech.net/"). 031 */ 032 private static String webSite = new String("http://www.provisiontech.net/"); 033 034 /** 035 * displayTime (set during build process to "03:08"). 036 */ 037 private static String displayTime = new String("03:08"); 038 039 /** 040 * project (set during build process to "SOAP"). 041 */ 042 private static String project = new String("SOAP"); 043 044 /** 045 * date (set during build process to "20060322T0308"). 046 */ 047 private static String date = new String("20060322T0308"); 048 049 /** 050 * company (set during build process to "Provision Tech"). 051 */ 052 private static String company = new String("Provision Tech"); 053 054 /** 055 * Get buildDate (set during build process to Wed Mar 22 15:08:20 PST 2006). 056 * 057 * @return Date buildDate 058 */ 059 public static final Date getBuildDate() { 060 return buildDate; 061 } 062 063 /** 064 * Get company (set during build process to "Provision Tech"). 065 * 066 * @return String company 067 */ 068 public static final String getCompany() { 069 return company; 070 } 071 072 /** 073 * Get date (set during build process to "20060322T0308"). 074 * 075 * @return String date 076 */ 077 public static final String getDate() { 078 return date; 079 } 080 081 /** 082 * Get displayDate (set during build process to "03-22-2006"). 083 * 084 * @return String displayDate 085 */ 086 public static final String getDisplayDate() { 087 return displayDate; 088 } 089 090 /** 091 * Get displayTime (set during build process to "03:08"). 092 * 093 * @return String displayTime 094 */ 095 public static final String getDisplayTime() { 096 return displayTime; 097 } 098 099 /** 100 * Get project (set during build process to "SOAP"). 101 * 102 * @return String project 103 */ 104 public static final String getProject() { 105 return project; 106 } 107 108 /** 109 * Get version (set during build process to "1"). 110 * 111 * @return String version 112 */ 113 public static final String getVersion() { 114 return version; 115 } 116 117 /** 118 * Get webSite (set during build process to "http://www.provisiontech.net/"). 119 * 120 * @return String webSite 121 */ 122 public static final String getWebSite() { 123 return webSite; 124 } 125 }