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