/** {@inheritDoc} */
public synchronized void start(StartContext context) throws StartException {
final JMSServerManager jmsManager = jmsServer.getValue();
try {
jmsManager.createQueue(false, queueName, selectorString, durable, jndi);
} catch (Exception e) {
throw new StartException("failed to create queue", e);
}
}