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