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

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

There is a newer version: 0.0.5
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy