com.opentext.ia.sdk.dto.Query Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infoarchive-sdk-core Show documentation
Show all versions of infoarchive-sdk-core Show documentation
A library that makes it quick and easy to create SIPs in InfoArchive
/*
* 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