1 23 24 29 30 package com.sun.enterprise.tools.upgrade.cluster; 31 32 36 public class IIOPEndPoint { 37 private String id; 38 private String port; 39 private String host; 40 41 42 public IIOPEndPoint(String id, String host, String port) { 43 this.id = id; 44 this.host = host; 45 this.port = port; 46 } 47 48 52 public java.lang.String getHost() { 53 return host; 54 } 55 56 60 public void setHost(java.lang.String host) { 61 this.host = host; 62 } 63 64 68 public java.lang.String getId() { 69 return id; 70 } 71 72 76 public void setId(java.lang.String id) { 77 this.id = id; 78 } 79 80 84 public java.lang.String getPort() { 85 return port; 86 } 87 88 92 public void setPort(java.lang.String port) { 93 this.port = port; 94 } 95 96 } 97 | Popular Tags |