Returns an object that was stored to this message using the given key. If such object is not found, null is returned. @param key The key used to lookup the object @return The stored object or null if it isn't found
(String key)
| 298 | * @return The stored object or null if it isn't found |
| 299 | */ |
| 300 | public Object getProperty(String key) { |
| 301 | if (this.properties == null) { |
| 302 | return null; |
| 303 | } |
| 304 | return this.properties.get(key); |
| 305 | } |
| 306 | |
| 307 | /** |
| 308 | * Updates a value for an existing property. For storing the value first |