public interface UpdateViewProperties extends PendingUpdate<java.util.Map<java.lang.String,java.lang.String>>
Apply returns the updated view properties as a map for validation.
When committing, these changes will be applied to the current view metadata. Commit conflicts will be resolved by applying the pending changes to the new view metadata.
Modifier and Type | Method and Description |
---|---|
UpdateViewProperties |
remove(java.lang.String key)
Remove the given property key from the view.
|
UpdateViewProperties |
set(java.lang.String key,
java.lang.String value)
Add a key/value property to the view.
|
apply, commit, updateEvent
UpdateViewProperties set(java.lang.String key, java.lang.String value)
key
- a String keyvalue
- a String valuejava.lang.NullPointerException
- If either the key or value is nullUpdateViewProperties remove(java.lang.String key)
key
- a String keyjava.lang.NullPointerException
- If the key is null