| java.lang.Object com.sun.jbi.ui.client.JMXConnectionProperties
JMXConnectionProperties | public class JMXConnectionProperties (Code) | | This class manages the JMX Connection properties
author: Sun Microsystems, Inc. |
Method Summary | |
public String | getConnectionURL() | public String | getConnectionURL(String aHost, String aPort) constructs the jmx url. | public String | getConnectionURL(String aUrl, String aHost, String aPort) constructs the jmx url. | public String | getDefaultConnectionFactory() | public String | getDefaultPassword() | public String | getDefaultUserName() | public String | getHost() | public static JMXConnectionProperties | getInstance() | public static Properties | getJMXConnectionPropertyMap(String url, String host, String port, String username, String password) creates the Properties object that contains the name/value pair of the
connection properties from the user input. | public static Properties | getJMXConnectionPropertyMap(String confac, Properties provprops, String url, String host, String port, String username, String password) | public static Properties | getJMXConnectionPropertyMap(Properties provprops, String url, String host, String port, String username, String password) | public String | getPort() | public String | getURLFormat() |
CONNECTION_FACTORY_PROP | final public static String CONNECTION_FACTORY_PROP(Code) | | property name
|
HOST_PROP | final public static String HOST_PROP(Code) | | property name
|
PASSWORD_PROP | final public static String PASSWORD_PROP(Code) | | property name
|
PORT_PROP | final public static String PORT_PROP(Code) | | property name
|
URL_PROP | final public static String URL_PROP(Code) | | property name
|
USERNAME_PROP | final public static String USERNAME_PROP(Code) | | property name
|
getConnectionURL | public String getConnectionURL()(Code) | | constructs the jmx url
url |
getConnectionURL | public String getConnectionURL(String aHost, String aPort)(Code) | | constructs the jmx url. any or all params can be null.
Parameters: aHost - host Parameters: aPort - port url |
getConnectionURL | public String getConnectionURL(String aUrl, String aHost, String aPort)(Code) | | constructs the jmx url. any or all params can be null.
Parameters: aUrl - url format Parameters: aHost - host Parameters: aPort - port url |
getDefaultConnectionFactory | public String getDefaultConnectionFactory()(Code) | | con factory
connection factory |
getDefaultPassword | public String getDefaultPassword()(Code) | | password
password |
getDefaultUserName | public String getDefaultUserName()(Code) | | username
username |
getJMXConnectionPropertyMap | public static Properties getJMXConnectionPropertyMap(String url, String host, String port, String username, String password)(Code) | | creates the Properties object that contains the name/value pair of the
connection properties from the user input. Adds onlu non null values
passed to the properties object. if user want to use the system
defaults, they should pass null for the corresponding property.
Parameters: url - url Parameters: host - host Parameters: port - port Parameters: username - username Parameters: password - password Property map. |
getJMXConnectionPropertyMap | public static Properties getJMXConnectionPropertyMap(String confac, Properties provprops, String url, String host, String port, String username, String password)(Code) | | Parameters: confac - Parameters: provprops - Parameters: url - Parameters: host - Parameters: port - Parameters: username - Parameters: password - |
getJMXConnectionPropertyMap | public static Properties getJMXConnectionPropertyMap(Properties provprops, String url, String host, String port, String username, String password)(Code) | | Parameters: provprops - Parameters: url - Parameters: host - Parameters: port - Parameters: username - Parameters: password - |
getURLFormat | public String getURLFormat()(Code) | | returns url format
url format |
|
|