117118119120121122123124
{ return (char) ((Byte) get(name)).byteValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
129130131132133134135136
{ return ((Integer) get(name)).intValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
141142143144145146147148
{ return ((Long) get(name)).longValue(); } catch (Exception ex) { throw new InvalidPayloadException(); } }
153154155156157158159160
{ return (String) get(name); } catch (Exception ex) { throw new InvalidPayloadException(); } }