com.github.zaza.allegro.SearchByStringBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allegro-client Show documentation
Show all versions of allegro-client Show documentation
Java client for Allegro Web API
package com.github.zaza.allegro;
public class SearchByStringBuilder extends SearchBuilder {
public SearchByStringBuilder(AllegroClient client, String string) {
super(client);
this.string = string;
}
public SearchByStringBuilder categoryId(int categoryId) {
this.categoryId = categoryId;
return this;
}
public SearchBuilder userId(int userId) {
this.userId = userId;
return this;
}
}