All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opentext.ia.sdk.dto.Query Maven / Gradle / Ivy

There is a newer version: 12.8.4
Show newest version
/*
 * Copyright (c) 2016-2017 by OpenText Corporation. All Rights Reserved.
 */
package com.opentext.ia.sdk.dto;

import java.util.ArrayList;
import java.util.List;


public class Query extends NamedLinkContainer {

  private String resultSchema;
  private String resultRootElement = "result";
  private boolean resultRootNsEnabled;
  private List namespaces = new ArrayList<>();
  private String quotaAsync;
  private String quota;
  private List aics = new ArrayList<>();

  public String getQuotaAsync() {
    return quotaAsync;
  }

  public void setQuotaAsync(String quotaAsync) {
    this.quotaAsync = quotaAsync;
  }

  public String getQuota() {
    return quota;
  }

  public void setQuota(String quota) {
    this.quota = quota;
  }

  public List getAics() {
    return aics;
  }

  public void setAics(List aics) {
    this.aics = new ArrayList<>(aics.size());
    this.aics.addAll(aics);
  }

  public String getResultSchema() {
    return resultSchema;
  }

  public void setResultSchema(String resultSchema) {
    this.resultSchema = resultSchema;
  }

  public String getResultRootElement() {
    return resultRootElement;
  }

  public void setResultRootElement(String resultRootElement) {
    this.resultRootElement = resultRootElement;
  }

  public boolean isResultRootNsEnabled() {
    return resultRootNsEnabled;
  }

  public final void setResultRootNsEnabled(boolean resultRootNsEnabled) {
    this.resultRootNsEnabled = resultRootNsEnabled;
  }

  public List getNamespaces() {
    return namespaces;
  }

  public void setNamespaces(List namespaces) {
    this.namespaces = new ArrayList<>(namespaces.size());
    this.namespaces.addAll(namespaces);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy