You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
915 B
23 lines
915 B
package org.leolo.nrdatad; |
|
|
|
public final class Constants { |
|
public static class Metadata{ |
|
public static final String LAST_LTP = "01-last-ltp-time"; |
|
} |
|
|
|
public static class CronJob{ |
|
public static final String REFERENCE_DATA = "refd"; |
|
} |
|
|
|
public static class Configuration { |
|
public static final String ALWAYS_RUN_LTP = "cron.ltp.always"; |
|
public static final String ALWAYS_RUN_REF_DATA = "cron.ref.always"; |
|
public static final String NETWORK_RAIL_USER = "network.user"; |
|
public static final String NETWORK_RAIL_PASSWORD = "network.pwd"; |
|
} |
|
|
|
public static class NetworkRailURI{ |
|
public static final String CORPUS_URL = "https://datafeeds.networkrail.co.uk/ntrod/SupportingFileAuthenticate?type=CORPUS"; |
|
public static final String SMART_URL = "https://datafeeds.networkrail.co.uk/ntrod/SupportingFileAuthenticate?type=SMART"; |
|
} |
|
}
|
|
|