![JAR search and dependency download from the Maven repository](/logo.png)
com.genability.client.api.request.GetProfilesRequest Maven / Gradle / Ivy
package com.genability.client.api.request;
import java.io.Serializable;
import java.util.List;
import org.apache.http.NameValuePair;
import com.fasterxml.jackson.annotation.JsonIgnore;
public class GetProfilesRequest extends AbstractGetNRequest implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Private member variable for accountId.
*/
private String accountId;
/**
* Private member variable for providerAccountId.
*/
private String providerAccountId;
/**
* @return the accountId
*/
public String getAccountId() {
return accountId;
}
/**
* @param accountId The accountId.
* the accountId to set
*/
public void setAccountId(String accountId) {
this.accountId = accountId;
}
/**
* @return providerAccountId
*/
public String getProviderAccountId() {
return providerAccountId;
}
/**
* @param providerAccountId The providerAccountId.
* the providerAccountId to set
*/
public void setProviderAccountId(String providerAccountId) {
this.providerAccountId = providerAccountId;
}
@Override
@JsonIgnore
public List getQueryParams() {
List qparams = super.getQueryParams();
addParam(qparams, "accountId", accountId);
addParam(qparams, "providerAccountId", providerAccountId);
return qparams;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy