org.apache.qpid.server.configuration
Interface BrokerConfig

All Superinterfaces:
ConfiguredObject<BrokerConfigType,BrokerConfig>
All Known Implementing Classes:
BrokerConfigAdapter

public interface BrokerConfig
extends ConfiguredObject<BrokerConfigType,BrokerConfig>


Method Summary
 void addVirtualHost(VirtualHostConfig virtualHost)
           
 void createBrokerConnection(String transport, String host, int port, boolean durable, String authMechanism, String username, String password)
           
 Integer getConnectionBacklogLimit()
           
 String getDataDirectory()
           
 String getFederationTag()
           
 Integer getManagementPublishInterval()
           
 Integer getMaxConnections()
           
 Integer getPort()
           
 Long getStagingThreshold()
           
 SystemConfig getSystem()
           
 String getVersion()
           
 Integer getWorkerThreads()
           
 void setSystem(SystemConfig system)
           
 
Methods inherited from interface org.apache.qpid.server.configuration.ConfiguredObject
getConfigType, getCreateTime, getId, getParent, isDurable
 

Method Detail

setSystem

void setSystem(SystemConfig system)

getSystem

SystemConfig getSystem()

getPort

Integer getPort()

getWorkerThreads

Integer getWorkerThreads()

getMaxConnections

Integer getMaxConnections()

getConnectionBacklogLimit

Integer getConnectionBacklogLimit()

getStagingThreshold

Long getStagingThreshold()

getManagementPublishInterval

Integer getManagementPublishInterval()

getVersion

String getVersion()

getDataDirectory

String getDataDirectory()

addVirtualHost

void addVirtualHost(VirtualHostConfig virtualHost)

createBrokerConnection

void createBrokerConnection(String transport,
                            String host,
                            int port,
                            boolean durable,
                            String authMechanism,
                            String username,
                            String password)

getFederationTag

String getFederationTag()


Licensed to the Apache Software Foundation