]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/lib/vbox/VBoxPortMapping.java
Introduce revision build numbers
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / 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 guest;
7 private String host;
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 getGuest() {
18 return guest;
19 }
20
21 public void setGuest(String guest) {
22 this.guest = guest;
23 }
24
25 public String getHost() {
26 return host;
27 }
28
29 public void setHost(String host) {
30 this.host = host;
31 }
32
33 }