All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.zaza.allegro.SearchByCategoryBuilder Maven / Gradle / Ivy

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy