com.aliyun.openservices.log.response.ListSavedSearchResponse Maven / Gradle / Ivy
package com.aliyun.openservices.log.response;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import com.aliyun.openservices.log.common.SavedSearch;
public class ListSavedSearchResponse extends Response {
private static final long serialVersionUID = -6859512318225405051L;
protected int count = 0;
protected int total = 0;
protected List savedSearches = new ArrayList();
public ListSavedSearchResponse(Map headers, int count, int total, List savedSearches) {
super(headers);
setCount(count);
setTotal(total);
this.savedSearches = savedSearches;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public List getSavedSearches() {
return savedSearches;
}
public void setSavedSearches(List savedSearches) {
this.savedSearches = new ArrayList();
for (SavedSearch savedSearch : savedSearches) {
savedSearches.add(savedSearch);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy