com.opentext.ia.sdk.dto.Search 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;
public class Search extends NamedLinkContainer {
private String description;
private boolean nestedSearch;
private String state;
private boolean inUse;
private String aic;
private String query;
public Search() {
setNestedSearch(false);
setState("DRAFT");
setInUse(false);
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public boolean isNestedSearch() {
return nestedSearch;
}
public final void setNestedSearch(boolean nestedSearch) {
this.nestedSearch = nestedSearch;
}
public String getState() {
return state;
}
public final void setState(String state) {
this.state = state;
}
public boolean isInUse() {
return inUse;
}
public final void setInUse(boolean inUse) {
this.inUse = inUse;
}
public String getAic() {
return aic;
}
public final void setAic(String aic) {
this.aic = aic;
}
public String getQuery() {
return query;
}
public final void setQuery(String query) {
this.query = query;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy