Package org.semanticweb.owlapi.owllink.server.legacy

Examples of org.semanticweb.owlapi.owllink.server.legacy.LegacyReasonerFactory


public class RacerProServer extends Server {

  @Override
  public void initialServer(int index) {
    OWLReasonerFactory factory = new RacerTCPReasonerFactory();
    LegacyReasonerFactory legacyFactory =
      new LegacyReasonerFactory(factory);
    AbstractOWLlinkReasonerConfiguration configuration =
      new AbstractOWLlinkReasonerConfiguration();
    int port = ServerParams.getPort(getServerName());
    server = new OWLlinkHTTPXMLServer(legacyFactory, configuration, port);
  }
View Full Code Here

TOP

Related Classes of org.semanticweb.owlapi.owllink.server.legacy.LegacyReasonerFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.