1 23 24 28 package com.sun.enterprise.admin.util; 29 30 public class JMXConnectorConfig { 31 32 private String host=null; 33 private String port=null; 34 private String user=null; 35 private String password=null; 36 private String protocol=null; 37 38 39 public JMXConnectorConfig() {} 40 41 42 43 public JMXConnectorConfig(String host, String port, 44 String user, String password, String protocol) 45 { 46 this.host=host; 47 this.port=port; 48 this.user=user; 49 this.password=password; 50 this.protocol=protocol; 51 } 52 53 54 public String getHost() { 55 return host; 56 } 57 58 public String getPort() { 59 return port; 60 } 61 62 public String getUser() { 63 return user; 64 } 65 66 public String getPassword() { 67 return password; 68 } 69 70 public String getProtocol() { 71 return protocol; 72 } 73 } 74 | Popular Tags |