Interface AcceptorControl
-
- All Superinterfaces:
ActiveMQComponentControl
public interface AcceptorControl extends ActiveMQComponentControl
An AcceptorControl is used to manage Acceptors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFactoryClassName()
Returns the class name of the AcceptorFactory implementation used by this acceptor.String
getName()
Returns the name of the acceptorMap<String,Object>
getParameters()
Returns the parameters used to configure this acceptorvoid
reload()
Re-create the acceptor with the existing configuration values.-
Methods inherited from interface org.apache.activemq.artemis.api.core.management.ActiveMQComponentControl
isStarted, start, stop
-
-
-
-
Method Detail
-
getName
String getName()
Returns the name of the acceptor
-
getFactoryClassName
String getFactoryClassName()
Returns the class name of the AcceptorFactory implementation used by this acceptor.
-
getParameters
Map<String,Object> getParameters()
Returns the parameters used to configure this acceptor
-
reload
void reload()
Re-create the acceptor with the existing configuration values. Useful, for example, for reloading key/trust stores on acceptors which support SSL.
-
-