An elegant, object-oriented, implementation of the JSON-P specification (JSR 374).
From the user's point of view, this implementation should be no different than others (it's supposed to respect the API, after all). However, it has a better internal design, bigger test coverage, easier extensibility etc. It will also provide a few proprietary classes to give the user more power especially when it comes to Polymorphism.
The library comes as a maven dependency:
<dependency>
<groupId>com.amihaiemil.web</groupId>
<artifactId>eo-jsonp-impl</artifactId>
<version>not-yet-released</version>
</dependency>
If you are not using Maven, you can also download the fat jar.
If you would like to contribute, just open an issue or a PR.
Make sure the maven build:
$mvn clean install -Pcheckstyle
passes before making a PR. Checkstyle will make sure you're following our code style and guidlines.