Exemplo n.º 1
0
 /**
  * Gets a property of the payload implementation
  *
  * @param key the key on which to lookup the property value
  * @return the property value or null if the property does not exist
  */
 public Object getProperty(Object key) {
   return adapter.getProperty(key.toString());
 }
Exemplo n.º 2
0
 public Object getProperty(String name, Object defaultValue) {
   return adapter.getProperty(name, defaultValue);
 }