com.icfolson.aem.groovy.console.servlets.AbstractJsonResponseServlet.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-groovy-console Show documentation
Show all versions of aem-groovy-console Show documentation
The AEM Groovy Console provides an interface for running Groovy scripts in the AEM container. Scripts can be
created to manipulate content in the JCR, call OSGi services, or execute arbitrary code using the AEM, Sling,
or JCR APIs.
package com.icfolson.aem.groovy.console.servlets
import com.google.common.base.Charsets
import com.google.common.net.MediaType
import groovy.json.JsonBuilder
import org.apache.sling.api.SlingHttpServletResponse
import org.apache.sling.api.servlets.SlingAllMethodsServlet
abstract class AbstractJsonResponseServlet extends SlingAllMethodsServlet {
void writeJsonResponse(SlingHttpServletResponse response, json) {
response.contentType = MediaType.JSON_UTF_8.withoutParameters().toString()
response.characterEncoding = Charsets.UTF_8.name()
new JsonBuilder(json).writeTo(response.writer)
}
}