View Javadoc

1   /*
2    *
3    * Copyright 2003, 2004 by Libereco, the Netherlands.  All Rights Reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are not permitted.
7    *
8    * Neither the name of Libereco or the names of contributors may be
9    * used to endorse or promote products derived from this software
10   * without specific prior written permission.
11   *
12   * This software is provided "AS IS," without a warranty of any kind.
13   * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
14   * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
15   * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED.
16   * LIBERECO AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES OR
17   * LIABILITIES SUFFERED BY LICENSEE AS A RESULT OF OR RELATING TO USE,
18   * MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR ITS DERIVATIVES.
19   * IN NO EVENT WILL LIBERECO OR ITS LICENSORS BE LIABLE FOR ANY LOST
20   * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,
21   * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND
22   * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
23   * OR INABILITY TO USE SOFTWARE, EVEN IF LIBERECO HAS BEEN ADVISED
24   * OF THE POSSIBILITY OF SUCH DAMAGES.
25   */
26  package net.sourceforge.wheeler.server;
27  
28  /***
29   * The <code>VersionConstants</code> interface provides some global version
30   * related constants. The generated code is based on 
31   * src/conf/VersionConstants.template.
32   *
33   * <p><b>Usage:</b><br/>
34   * <pre xml:space="preserve"><code>
35   * N/A
36   * </code></pre>
37   *
38   * @version $Id: $
39   * @author <a href="mailto:mgl@users.sourceforge.net">Marcel Schepers</a>
40   * @since january 30, 2004
41   */
42  interface VersionConstants {
43      String BUILDNUM = "16";
44      String BUILDTIME = "23:16";
45      String BUILDDATE = "21 November 2004";
46      String BUILDMACHINE= "tago";
47      String VERSIONNUM = "0";
48  }
49  
50