|
Project Information
Links
|
IntroductionThis is the Online Presence Ontology (OPO) code repository intended for storing tools we develop for generating and manipulating OPO data. jOPOIn order to start generating OPO data from Java, you can use our jOPO library. jOPO is a set of POJO classes reflecting classes from the OPO ontology and annotated with Jenabean annotations. Jenabean allows us to work with plain POJO classes which are serialized to and deserialized from RDF. Using jOPOIn order to use jOPO, you can download a jar file from the Downloads page. Or, if your application is using Maven, you can add following code snippets to your pom file: <dependencies>
...
<dependency>
<groupId>net.onlinepresence</groupId>
<artifactId>jopo</artifactId>
<version>1.2.1</version>
</dependency>
...
</dependencies>
|