webpiecesxxxxxpackage.json.SearchResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WEBPIECESxAPPNAME Show documentation
Show all versions of WEBPIECESxAPPNAME Show documentation
Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property
package webpiecesxxxxxpackage.json;
import java.util.ArrayList;
import java.util.List;
//@Jackson
public class SearchResponse {
private int searchTime;
private List matches = new ArrayList<>();
public int getSearchTime() {
return searchTime;
}
public void setSearchTime(int searchTime) {
this.searchTime = searchTime;
}
public List getMatches() {
return matches;
}
public void setMatches(List matches) {
this.matches = matches;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy