]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - cms/org.argeo.slc.support/src/org/argeo/slc/lib/vbox/VBoxPortMapping.java
Clarify SLC project structure.
[gpl/argeo-slc.git] / cms / org.argeo.slc.support / src / org / argeo / slc / lib / vbox / VBoxPortMapping.java
diff --git a/cms/org.argeo.slc.support/src/org/argeo/slc/lib/vbox/VBoxPortMapping.java b/cms/org.argeo.slc.support/src/org/argeo/slc/lib/vbox/VBoxPortMapping.java
new file mode 100644 (file)
index 0000000..64ec866
--- /dev/null
@@ -0,0 +1,33 @@
+package org.argeo.slc.lib.vbox;
+
+/** The mapping of one port. */
+public class VBoxPortMapping {
+       private String protocol = "TCP";
+       private String guestPort;
+       private String hostPort;
+
+       public String getProtocol() {
+               return protocol;
+       }
+
+       public void setProtocol(String type) {
+               this.protocol = type;
+       }
+
+       public String getGuestPort() {
+               return guestPort;
+       }
+
+       public void setGuestPort(String guestPort) {
+               this.guestPort = guestPort;
+       }
+
+       public String getHostPort() {
+               return hostPort;
+       }
+
+       public void setHostPort(String hostPort) {
+               this.hostPort = hostPort;
+       }
+
+}