package flyweightpattern.extrinsic; public class Port { private String port; public Port(String port) { this.port = port; } public void setPort(String port) { this.port = port; } public String getPort() { return this.port; } }