// // Getdown - application installer, patcher and launcher // Copyright (C) 2004-2016 Getdown authors // https://github.com/threerings/getdown/blob/master/LICENSE package com.threerings.getdown.data; import java.util.Arrays; import java.util.List; import com.threerings.getdown.util.StringUtil; /** * Contains static data provided during the build process. */ public class Build { /** The date and time at which the code was built: in {@code yyyy-MM-dd HH:mm} format. */ public static String time () { return "@build_time@"; } /** The Maven version of the Getdown project. */ public static String version () { return "@build_version@"; } /** *

The hosts which Getdown is allowed to communicate with. An empty list indicates that * no whitelist is configured and there are no limitations. By default, no host whitelist * is added to the binary, so it can be used to download and run applications from any * server. * *

To create a custom Getdown build that can only talk to whitelisted servers, set * the {@code getdown.host.whitelist} property on the command line while building the JAR * (e.g. {@code mvn package -Dgetdown.host.whitelist=my.server.com}). Wildcards can be used * (e.g. {@code *.mycompany.com}) and multiple values can be separated by commas * (e.g. {@code app1.foo.com,app2.bar.com,app3.baz.com}). */ public static List hostWhitelist () { return Arrays.asList(StringUtil.parseStringArray("@host_whitelist@")); } /* *

The default connect_timeout to use. Overridden by system property of the same name at runtime */ public static int defaultConnectTimeout () { try { return Integer.valueOf("@connect_timeout@"); } catch (Exception e) { return 0; } } /* *

The default read_timeout to use. Overridden by system property of the same name at runtime */ public static int defaultReadTimeout () { try { return Integer.valueOf("@read_timeout@"); } catch (Exception e) { return 30; } } /* *

Whether to allow the local "file://" scheme for appbase */ public static boolean allowLocatorFileProtocol() { try { return Boolean.valueOf("@allow_file_protocol@"); } catch (Exception e) { return false; } } }