Package org.apache.activemq.web.config
Interface WebConsoleConfiguration
-
- All Known Implementing Classes:
AbstractConfiguration
,JNDIConfiguration
,OsgiConfiguration
,SystemPropertiesConfiguration
public interface WebConsoleConfiguration
The configuration used for the web console.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionFactory
getConnectionFactory()
The connection factory to use for sending/receiving messages.String
getJmxPassword()
Password for the JMX-user.Collection<JMXServiceURL>
getJmxUrls()
The URL to the JMX connectors of the broker.String
getJmxUser()
The user that is used in case of authenticated JMX connections.
-
-
-
Method Detail
-
getConnectionFactory
ConnectionFactory getConnectionFactory()
The connection factory to use for sending/receiving messages.- Returns:
- not
null
-
getJmxUrls
Collection<JMXServiceURL> getJmxUrls()
The URL to the JMX connectors of the broker. The names of any failover (master-slave configuration) must also be specified.- Returns:
- not
null
, must contain at least one entry
-
getJmxUser
String getJmxUser()
The user that is used in case of authenticated JMX connections. The user must be the same for all the brokers.- Returns:
null
if no authentication should be used.
-
getJmxPassword
String getJmxPassword()
Password for the JMX-user.- Returns:
null
if no authentication- See Also:
getJmxUser()
-
-