JAL-3130 adapted getdown src. attempt 2. first attempt failed due to cp'ed .git files
[jalview.git] / getdown / src / getdown / core / src / main / java / com / threerings / getdown / data / Properties.java
1 //
2 // Getdown - application installer, patcher and launcher
3 // Copyright (C) 2004-2018 Getdown authors
4 // https://github.com/threerings/getdown/blob/master/LICENSE
5
6 package com.threerings.getdown.data;
7
8 /**
9  * System property constants associated with Getdown.
10  */
11 public class Properties
12 {
13     /** This property will be set to "true" on the application when it is being run by getdown. */
14     public static final String GETDOWN = "com.threerings.getdown";
15
16     /** If accepting connections from the launched application, this property
17      * will be set to the connection server port. */
18     public static final String CONNECT_PORT = "com.threerings.getdown.connectPort";
19 }