Skip to content

Instantly share code, notes, and snippets.

@RashidJorvee
RashidJorvee / UpdateAEMNodePropertyServlet.java
Created October 18, 2021 17:48
Servlet to add and update AEM Node properties using ModifiableValueMap
package com.rashidjorvee.aem.servlets;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.SlingHttpServletResponse;
import org.apache.sling.api.resource.ModifiableValueMap;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.api.servlets.SlingSafeMethodsServlet;
import org.osgi.service.component.annotations.Component;