Package org.apache.sling.api.resource
Interface PersistableValueMap
-
- All Known Subinterfaces:
Profile
@Deprecated public interface PersistableValueMap extends ValueMap
Deprecated.Use theModifiableValueMapinstead.ThePersistableValueMapis an extension of theValueMapwhich allows to modify and persist the properties.Note, that each time you call
Adaptable.adaptTo(Class)you get a new map instance which does not share modified properties with other representations.A
PersistableValueMapmight not support deep reading of values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidreset()Deprecated.Reset the changes.voidsave()Deprecated.Persists the changes.-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
save
void save() throws PersistenceException
Deprecated.Persists the changes.- Throws:
PersistenceException- If the changes can't be persisted.
-
reset
void reset()
Deprecated.Reset the changes.
-
-