This module provide a ParsingProvider
and SerializingProvider
for Apache Clerezza. Those Providers plug into the Clerezza Parser
and Serializer
service infrastructure. Meaning that adding this bundle will allow Clerezza to parse and serialize JSON-LD.
<dependency>
<groupId>com.github.jsonld-java</groupId>
<artifactId>jsonld-java-clerezza</artifactId>
<version>0.12.0</version>
</dependency>
(Adjust for most recent , as found in pom.xml
).
The ClerezzaTripleCallback returns an instance of org.apache.clerezza.commons.rdf.Graph
See ClerezzaTripleCallbackTest.java for example Usage.
Assuming the above Bundle is active in the OSGI Environment one can simple inject the Serializer
and/or Parser
service.
@Reference
private Serializer serializer;
@Reference
private Parser parser;
Both the Parser
and Serializer
also support java.util.ServiceLoader
. So when running outside an OSGI environment one can use the getInstance()
to obtain an instance.
Serializer serializer = Serializer.getInstance();
Parser parser = Parser.getInstance();
The JSON-LD parser implementation supports application/ld+json
. The serializer supports both application/ld+json
and application/json
.
The rational behind this is that the parser can not parse any JSON however the Serializer does generate valid JSON.