Package org.apache.sling.api.resource

Examples of org.apache.sling.api.resource.ModifiableValueMap


                    folderPath,
                    NODE_PREFIX + (i + 1),
                    parameters.getTemplate(),
                    TITLE_PREFIX + (i + 1));

            final ModifiableValueMap properties = page.getContentResource().adaptTo(ModifiableValueMap.class);

            for (Map.Entry<String, Object> entry : parameters.getProperties().entrySet()) {
                properties.put(entry.getKey(), this.eval(scriptEngine, entry.getValue()));
            }

            bucketCount++;

            if (i % saveThreshold == 0) {
View Full Code Here

TOP

Related Classes of org.apache.sling.api.resource.ModifiableValueMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.