com.netflix.conductor.common.run.SearchResult Maven / Gradle / Ivy
/**
* Copyright 2016 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
*
*/
package com.netflix.conductor.common.run;
import java.util.List;
/**
* @author Viren
*
*/
public class SearchResult {
private long totalHits;
private List results;
public SearchResult(){
}
public SearchResult(long totalHits, List results) {
super();
this.totalHits = totalHits;
this.results = results;
}
/**
* @return the totalHits
*/
public long getTotalHits() {
return totalHits;
}
/**
* @return the results
*/
public List getResults() {
return results;
}
/**
* @param totalHits the totalHits to set
*/
public void setTotalHits(long totalHits) {
this.totalHits = totalHits;
}
/**
* @param results the results to set
*/
public void setResults(List results) {
this.results = results;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy