Show DisclosureRequestModel.java syntax highlighted
/**
* @(#) DisclosureRequestModel.java
* @author <a href:mailto="rick@rickmurphy.org">Rick Murphy</a>
* @version 0.1
* @see <a href="http://www.rickmurphy.org/cps-license.html">Citizen Privacy Service License</a>
*/
package org.rickmurphy.util;
import org.rickmurphy.exchangepackage.disclosure.DisclosureRequest;
import com.hp.hpl.jena.ontology.OntModelSpec;
import com.hp.hpl.jena.ontology.OntModel;
import com.hp.hpl.jena.rdf.model.ModelFactory;
/**
*/
public abstract class DisclosureRequestModel{
/**
*/
protected static OntModel model;
/**
*/
protected static final String privacy = "http://www.osera.gov/owl/2005/12/privacy.owl#";
/**
*/
protected static final String brm = "http://www.osera.gov/owl/2004/11/fea/brm.owl";
/**
*/
protected static final String feac = "http://www.osera.gov/owl/2004/11/fea/feac.owl#";
/**
*/
public DisclosureRequestModel(){
model.setNsPrefix("privacy",privacy);
model.setNsPrefix("brm",brm);
model.setNsPrefix("feac",feac);
}//DisclosureRequestModel
/**
* @return OntModel
*/
public abstract OntModel get();
}//DisclosureRequestModel
See more files for this project here