Adobe I/O Event
Java (Jackson based) Implementation of the Adobe XDM Event Model
The Adobe XDM Event Model
is based on json-ld w3c activity streams spec based
for more detailed specifications, visit
Have a look at our JUnit tests and you'll have a good understanding of the expected json serialization.
This Library is associated with 2 maven builds (they also run the unit tests):
- one to build a standard Java library, using a standard
pom.xml
- to trigger this build locally, use the following command line:
mvn clean install
- to trigger this build locally, use the following command line:
- another to build a Java OSGI library (ready for use in AEM), with a
pom-bundle.xml
- to trigger this build locally, use the following command line:
mvn -f pom-bundle.xml clean install
- to trigger this build locally, use the following command line:
Contributions are welcomed! Read the Contributing Guide for more information.
This project is licensed under the Apache V2 License. See LICENSE for more information.
Note that as we chose to serve the json-ld @context
through link header [9] and keep fixed json-ld prefixes,
we based this implementation of plain and simple jackson [10] serialization,
otherwise for full-fledged json-ld implementation hydra [0] and jsonld-java [8] could have been used
- [0] http://www.hydra-cg.com/
- [1] https://github.com/dschulten/hydra-java
- [2] https://github.com/dschulten/hydra-java/tree/master/hydra-jsonld
- [3] https://json-ld.org/playground/
- [4] w3c/activitystreams#134 (comment)
- [5] w3c/activitystreams#136
- [8] https://github.com/jsonld-java/jsonld-java
- [9] https://www.w3.org/TR/json-ld/#interpreting-json-as-json-ld
- [10] https://github.com/FasterXML/jackson-core