summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/thrifthelper
diff options
context:
space:
mode:
authorSimon Rettberg2018-04-24 11:47:46 +0200
committerSimon Rettberg2018-04-24 11:47:46 +0200
commite4bb63179edac6752622e460854f6e2298db1a70 (patch)
tree53fe4d203c92a90ea86b9b6c94d39346caa974cc /src/main/java/org/openslx/thrifthelper
parentTweak TimeoutHashMap (diff)
downloadmaster-sync-shared-e4bb63179edac6752622e460854f6e2298db1a70.tar.gz
master-sync-shared-e4bb63179edac6752622e460854f6e2298db1a70.tar.xz
master-sync-shared-e4bb63179edac6752622e460854f6e2298db1a70.zip
Constants for virtId
Diffstat (limited to 'src/main/java/org/openslx/thrifthelper')
-rw-r--r--src/main/java/org/openslx/thrifthelper/TConst.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/org/openslx/thrifthelper/TConst.java b/src/main/java/org/openslx/thrifthelper/TConst.java
new file mode 100644
index 0000000..2ff902e
--- /dev/null
+++ b/src/main/java/org/openslx/thrifthelper/TConst.java
@@ -0,0 +1,13 @@
+package org.openslx.thrifthelper;
+
+public class TConst
+{
+
+ /*
+ * Fort virtId in e.g. Virtualizer class, ImageBase etc.
+ */
+ public static final String VIRT_VMWARE = "vmware";
+ public static final String VIRT_VIRTUALBOX = "virtualbox";
+ public static final String VIRT_QEMU = "qemukvm";
+
+}