com.composum.sling.core.util.SerializableValueMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of composum-nodes-commons Show documentation
Show all versions of composum-nodes-commons Show documentation
general components and objects to use the Sling API
package com.composum.sling.core.util;
import org.apache.sling.api.resource.ValueMap;
import org.apache.sling.api.wrappers.ValueMapDecorator;
import java.util.HashMap;
import java.util.Map;
/**
*
*/
public class SerializableValueMap extends ValueMapDecorator {
public SerializableValueMap(Map base) {
super(base instanceof ValueMap ? new HashMap<>(base) : base);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy