Skip to content

Instantly share code, notes, and snippets.

@joesus
Created October 8, 2014 21:45
Show Gist options
  • Save joesus/efe3e6a7fe8359ba0998 to your computer and use it in GitHub Desktop.
Save joesus/efe3e6a7fe8359ba0998 to your computer and use it in GitHub Desktop.
Config.java
We changed it from @HOME.URL@ to @HOME_URL@
/**
* Useful build-time constants.
* This file is generated as part of the production release process,
* overriding defaults configured for use in a development environment.
*
* Any local changes to this file are therefore subject to being overwritten
* by use of the ant build process, and may not survive a source check-in for
* very long.
*
* @author Simon Drabble <sdrabble@healthagen.net>
*
* @copyright (C) 2010-2011 Healthagen, LLC
*/
package com.healthagen.iTriage;
public class Config {
public static final String HOME_URL = "@HOME_URL@";
public static final String NEWS_SERVICE_URL = "@NEWS_SERVICE_URL@";
public static final String LOGS_URL = "@LOGGING.URL@";
public static final long MIN_TIME_BETWEEN_UPLOAD_RUNS_MS = @LOG.UPLOAD.PERIOD@;
public static final long MIN_TIME_BEFORE_FORCE_CLOSING_LOGS_MS = @LOG.FORCE.CLOSE.PERIOD@;
public static final String ORDER_INFO = @ORDER.INFO@;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment