@Override public double getDoubleProperty(String name) { try { return properties.getDoubleProperty(new SimpleString(name)); } catch (HornetQPropertyConversionException ce) { throw new MessageFormatRuntimeException(ce.getMessage()); } }
public Double getDoubleProperty(final String key) throws HornetQPropertyConversionException { return properties.getDoubleProperty(new SimpleString(key)); }