/*
* Copyright (C) 2008-2011 CBDP Consortium
*
* All rights reserved.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution.
*
* This software consists of contributions made by many individuals,
* listed below:
*
* Author: Xabier Laiseca <xabier.laiseca@deusto.es>
* David Ausn <david.ausin@deusto.es>
*/
package cbdp.server.contextreasoner.impl.reasoner.jena;
import cbdp.server.contextreasoner.Reasoner;
import cbdp.server.contextreasoner.impl.reasoner.GenericReasoner;
import cbdp.server.contextreasoner.impl.reasoner.RuleSet;
import com.hp.hpl.jena.ontology.OntModelSpec;
/**
*
* @author Xabier Laiseca (University of Deusto)
*
*/
public class JenaReasoner extends GenericReasoner implements Reasoner
{
@Override
protected RuleSet createEmptyRuleSet()
{
return new JenaRuleSet();
}
@Override
public OntModelSpec getOntModelSpec()
{
return OntModelSpec.OWL_MEM_MINI_RULE_INF;
}
}
|