@Override public boolean getBooleanProperty(String name) { try { return properties.getBooleanProperty(new SimpleString(name)); } catch (HornetQPropertyConversionException ce) { throw new MessageFormatRuntimeException(ce.getMessage()); } catch (RuntimeException e) { throw new JMSRuntimeException(e.getMessage()); } }
public Boolean getBooleanProperty(final String key) throws HornetQPropertyConversionException { return properties.getBooleanProperty(new SimpleString(key)); }