| 1 |
package net.oni2.aeinstaller.backend.depot; |
| 2 |
|
| 3 |
/** |
| 4 |
* @author Christian Illy |
| 5 |
*/ |
| 6 |
public class DepotConfig { |
| 7 |
/** |
| 8 |
* Type-value of nodes which contain Mods |
| 9 |
*/ |
| 10 |
public static final String NODETYPE_MOD = "mod"; |
| 11 |
|
| 12 |
/** |
| 13 |
* Vocabulary name for platform field |
| 14 |
*/ |
| 15 |
public static final String PLATFORM_VOCAB = "Platform"; |
| 16 |
/** |
| 17 |
* Vocabulary name for installtype field |
| 18 |
*/ |
| 19 |
public static final String INSTALLTYPE_VOCAB = "Install method"; |
| 20 |
/** |
| 21 |
* Vocabulary name for modtype field |
| 22 |
*/ |
| 23 |
public static final String MODTYPE_VOCAB = "Mod type"; |
| 24 |
|
| 25 |
/** |
| 26 |
* Taxonomy term name for platform value Win |
| 27 |
*/ |
| 28 |
public static final String PLATFORM_WIN = "Windows"; |
| 29 |
/** |
| 30 |
* Taxonomy term name for platform value Mac |
| 31 |
*/ |
| 32 |
public static final String PLATFORM_MAC = "Mac OS"; |
| 33 |
/** |
| 34 |
* Taxonomy term name for platform value Both |
| 35 |
*/ |
| 36 |
public static final String PLATFORM_BOTH = "Both"; |
| 37 |
|
| 38 |
/** |
| 39 |
* Taxonomy term name for installtype Package |
| 40 |
*/ |
| 41 |
public static final String INSTALLTYPE_PACKAGE = "Package"; |
| 42 |
} |