1 10 11 package org.nanocontainer.testmodel; 12 13 14 public class WebServerConfigBean implements WebServerConfig { 15 16 private int port; 17 private String host; 18 19 public void setHost(String host) { 20 this.host = host; 21 } 22 23 public void setPort(int port) { 24 this.port = port; 25 } 26 27 public String getHost() { 28 return host; 29 } 30 31 public int getPort() { 32 return port; 33 } 34 35 } 36 | Popular Tags |