com.github.zaza.allegro.SearchByUserBuilder 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 SearchByUserBuilder extends SearchBuilder {
public SearchByUserBuilder(AllegroClient client, int userId) {
super(client);
this.userId = userId;
}
public SearchBuilder string(String string) {
this.string = string;
return this;
}
public SearchBuilder categoryId(int categoryId) {
this.categoryId = categoryId;
return this;
}
}