Exemplo n.º 1
0
 @Override
 public short getShortProperty(String name) {
   try {
     return properties.getShortProperty(new SimpleString(name));
   } catch (HornetQPropertyConversionException ce) {
     throw new MessageFormatRuntimeException(ce.getMessage());
   }
 }
Exemplo n.º 2
0
 public Short getShortProperty(final String key) throws HornetQPropertyConversionException {
   return properties.getShortProperty(new SimpleString(key));
 }