![JAR search and dependency download from the Maven repository](/logo.png)
me.sniggle.matemonkey4j.search.SearchCallable Maven / Gradle / Ivy
The newest version!
package me.sniggle.matemonkey4j.search;
import me.sniggle.matemonkey4j.BaseMateMonkeyCallable;
import me.sniggle.matemonkey4j.api.model.geo.GeoLocation;
import me.sniggle.matemonkey4j.api.query.Query;
/**
* @author tuxbox, sniggle.me
*
* Callable to query the search API
*/
public class SearchCallable extends BaseMateMonkeyCallable {
private final Query query;
/**
*
* @param query
* the query to apply
*/
public SearchCallable(Query query) {
super(GeoLocation.class, "/search");
this.query = query;
}
@Override
protected String resolvePath() {
if( query == null || query.toQuery() == null ) {
throw new IllegalArgumentException("A query must be provided for the search functionality");
}
return getPath() + "?" + query.toQuery();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy