Package org.apache.manifoldcf.core.interfaces

Examples of org.apache.manifoldcf.core.interfaces.VersionContext


  public VersionContext getPipelineDescription(Specification spec)
    throws ManifoldCFException, ServiceInterruption
  {
    getSession();
    SpecPacker sp = new SpecPacker(spec);
    return new VersionContext(sp.toPackedString(),params,spec);
  }
View Full Code Here


  @Override
  public VersionContext getPipelineDescription(Specification os)
      throws ManifoldCFException
  {
    ElasticSearchSpecs specs = new ElasticSearchSpecs(getSpecNode(os));
    return new VersionContext(specs.toJson().toString(),params,os);
  }
View Full Code Here

  @Override
  public VersionContext getPipelineDescription(Specification os)
      throws ManifoldCFException
  {
    OpenSearchServerSpecs specs = new OpenSearchServerSpecs(getSpecNode(os));
    return new VersionContext(specs.toJson().toString(), params, os);
  }
View Full Code Here

   * the document will not need to be sent again to the output data store.
   */
  @Override
  public VersionContext getPipelineDescription(Specification spec) throws ManifoldCFException, ServiceInterruption {
    HDFSOutputSpecs specs = new HDFSOutputSpecs(getSpecNode(spec));
    return new VersionContext(specs.toJson().toString(),params,spec);
  }
View Full Code Here

   * the document will not need to be sent again to the output data store.
   */
  @Override
  public VersionContext getPipelineDescription(Specification spec) throws ManifoldCFException, ServiceInterruption {
    FileOutputSpecs specs = new FileOutputSpecs(getSpecNode(spec));
    return new VersionContext(specs.toJson().toString(),params,spec);
  }
View Full Code Here

  public VersionContext getPipelineDescription(Specification spec)
    throws ManifoldCFException, ServiceInterruption
  {
    getSession();
    SpecPacker sp = new SpecPacker(spec);
    return new VersionContext(sp.toPackedString(),params,spec);
  }
View Full Code Here

TOP

Related Classes of org.apache.manifoldcf.core.interfaces.VersionContext

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.