1 22 package org.objectweb.petals.jbi.transport.util; 23 24 29 public class JoramServer { 30 31 protected String host; 32 33 protected String port; 34 35 public String getHost() { 36 return host; 37 } 38 39 public void setHost(String host) { 40 this.host = host; 41 } 42 43 public String getPort() { 44 return port; 45 } 46 47 public void setPort(String port) { 48 this.port = port; 49 } 50 51 } 52 | Popular Tags |