Package org.apache.uima.simpleserver.config.impl

Examples of org.apache.uima.simpleserver.config.impl.ServerSpecImpl


   * valid instance of ResultSpecification in order to be able to deliver a valid XML service
   * description
   */
  @Override
  public boolean initServer() {
    ServerSpec res = new ServerSpecImpl("Result Merger",
        "Result Merger - merge results of other UIMA services");
    // res.setTypeSpecs(new ArrayList<TypeMap>());
    // TODO: fix this
    // this.server.setResultSpec(res);
    return true;
View Full Code Here


   * valid instance of ResultSpecification in order to be able to deliver a valid XML service
   * description
   */
  @Override
  public boolean initServer() {
    ServerSpec res = new ServerSpecImpl("Result Merger",
        "Result Merger - merge results of other UIMA services");
    // res.setTypeSpecs(new ArrayList<TypeMap>());
    // TODO: fix this
    // this.server.setResultSpec(res);
    return true;
View Full Code Here

   *                Output all types, regardless of individual type maps.
   * @return A new service config object.
   */
  public static ServerSpec newServerSpec(String shortDescription, String longDescription,
      boolean doOutputAll) {
    return new ServerSpecImpl(shortDescription, longDescription, doOutputAll);
  }
View Full Code Here

TOP

Related Classes of org.apache.uima.simpleserver.config.impl.ServerSpecImpl

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.