]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - cms/org.argeo.slc.support/src/org/argeo/slc/lib/vbox/VBoxPortMapping.java
Clarify overall 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
deleted file mode 100644 (file)
index 64ec866..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-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;
-       }
-
-}