| commit | 5da0a66e4bd1fb665372a4fb032a559d2ad8a395 | [log] [tgz] |
|---|---|---|
| author | Stefan Seifert <stefanseifert@users.noreply.github.com> | Tue Apr 09 10:53:05 2024 +0200 |
| committer | Stefan Seifert <stefanseifert@users.noreply.github.com> | Tue Apr 09 10:59:11 2024 +0200 |
| tree | 9cb83510b32ed0b9370a2e7387ab7ba0a62b9e08 | |
| parent | 78dca0a28e293e3706c5c198d55bd5332671f1d9 [diff] |
SLING-12281 Update to Parent 60, Java 11 Minimum Version
This module is part of the Apache Sling project.
The Apache Sling Content Parser API provides support for parsing various files capable of abstracting a Sling resource tree. This API is a continuation of the one provided by the Apache Sling JCR Content Parser bundle. Although very similar, there are some notable changes:
org.apache.sling.contentparser.api package;org.apache.sling.jcr.contentparser.ContentParserFactory; to obtain a ContentParser, given that they are exposed as OSGi services, one has to filter on the ContentParser.SERVICE_PROPERTY_CONTENT_TYPE service registration property, to select the appropriate file format;ParserOptions are now passed directly to the ContentParser#parse method.Implementations of the API are made available from separate bundles:
org.apache.sling.contentparser.jsonorg.apache.sling.contentparser.xmlorg.apache.sling.contentparser.xml-jcr (the only module depending on the JCR / Jackrabbit APIs)