KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > management > remote > JMXServiceURL

javax.management.remote
Class JMXServiceURL

java.lang.Object
  extended by javax.management.remote.JMXServiceURL
All Implemented Interfaces:
Serializable
See Also:
Top Examples, Source Code

public boolean equals(Object obj)
See Also:
Hashtable, Object.hashCode(), getHost(), getProtocol(), getURLPath(), getPort()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getHost()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getPort()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getProtocol()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getURLPath()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int hashCode()
See Also:
Hashtable, Object.equals(java.lang.Object)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public JMXServiceURL(String serviceURL)
              throws MalformedURLException
See Also:
NullPointerException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public JMXServiceURL(String protocol,
                     String host,
                     int port)
              throws MalformedURLException
See Also:
JMXServiceURL(protocol, host, port, null)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public JMXServiceURL(String protocol,
                     String host,
                     int port,
                     String urlPath)
              throws MalformedURLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String toString()
See Also:
Object, getPort(), getHost()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags