]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.support/src/org/argeo/slc/lib/vbox/VBoxPortMapping.java
Add doAs in RCP CmsView.
[gpl/argeo-slc.git] / org.argeo.slc.support / src / org / argeo / slc / lib / vbox / VBoxPortMapping.java
1 package org.argeo.slc.lib.vbox;
2
3 /** The mapping of one port. */
4 public class VBoxPortMapping {
5 private String protocol = "TCP";
6 private String guestPort;
7 private String hostPort;
8
9 public String getProtocol() {
10 return protocol;
11 }
12
13 public void setProtocol(String type) {
14 this.protocol = type;
15 }
16
17 public String getGuestPort() {
18 return guestPort;
19 }
20
21 public void setGuestPort(String guestPort) {
22 this.guestPort = guestPort;
23 }
24
25 public String getHostPort() {
26 return hostPort;
27 }
28
29 public void setHostPort(String hostPort) {
30 this.hostPort = hostPort;
31 }
32
33 }