/** * 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()); }
public Object getProperty(String name, Object defaultValue) { return adapter.getProperty(name, defaultValue); }