My favorites | Sign in
Project Home Downloads Wiki Source
Project Information
Members
Links

Introduction

This is the Online Presence Ontology (OPO) code repository intended for storing tools we develop for generating and manipulating OPO data.

jOPO

In 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 jOPO

In 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> 
 

<repositories> ... <repository> <id>OPO Code Repository</id> <url>http://onlinepresence.googlecode.com/svn/repo</url> </repository> ... </repositories>

Powered by Google Project Hosting