Class MockValueMap
- java.lang.Object
-
- org.apache.sling.api.wrappers.ValueMapDecorator
-
- org.apache.sling.api.wrappers.DeepReadValueMapDecorator
-
- org.apache.sling.api.wrappers.DeepReadModifiableValueMapDecorator
-
- org.apache.sling.testing.resourceresolver.MockValueMap
-
- All Implemented Interfaces:
Map<String,Object>,org.apache.sling.api.resource.ModifiableValueMap,org.apache.sling.api.resource.ValueMap
public class MockValueMap extends org.apache.sling.api.wrappers.DeepReadModifiableValueMapDecorator implements org.apache.sling.api.resource.ModifiableValueMapValueMap for mocked resources to mimick JCR-like behavior.Implements the following conversions:
- Converts all Date values to Calendar objects internally and vice versa.
- Converts InputStream to byte array and vice versa.
-
-
Constructor Summary
Constructors Constructor Description MockValueMap(org.apache.sling.api.resource.Resource resource)MockValueMap(org.apache.sling.api.resource.Resource resource, Map<String,Object> map)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()<T> Tget(String name, Class<T> type)Objectput(String key, Object value)voidputAll(Map<? extends String,?> map)Objectremove(Object key)-
Methods inherited from class org.apache.sling.api.wrappers.DeepReadValueMapDecorator
containsKey, get, get
-
Methods inherited from class org.apache.sling.api.wrappers.ValueMapDecorator
containsValue, entrySet, equals, hashCode, isEmpty, keySet, size, toString, values
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, putIfAbsent, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
get
public <T> T get(String name, Class<T> type)
- Specified by:
getin interfaceorg.apache.sling.api.resource.ValueMap- Overrides:
getin classorg.apache.sling.api.wrappers.DeepReadValueMapDecorator
-
-