com.nulabinc.backlog4j.api.option.GetParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backlog4j Show documentation
Show all versions of backlog4j Show documentation
Backlog4j is a Backlog binding library for Java.
package com.nulabinc.backlog4j.api.option;
import com.nulabinc.backlog4j.http.NameValuePair;
import java.util.ArrayList;
import java.util.List;
/**
* Parameters for get request.
*
* @author nulab-inc
*/
public abstract class GetParams {
protected List parameters = new ArrayList();
public List getParamList() {
return parameters;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy