com.microsoft.bingads.internal.OAuthUrlParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.
package com.microsoft.bingads.internal;
import java.net.URL;
class OAuthUrlParameters {
private String clientId;
private String responseType;
private URL redirectionUri;
private String state;
public OAuthUrlParameters(String clientId, String responseType, URL redirectionUri, String state) {
this.clientId = clientId;
this.responseType = responseType;
this.redirectionUri = redirectionUri;
this.state = state;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getResponseType() {
return responseType;
}
public void setResponseType(String responseType) {
this.responseType = responseType;
}
public URL getRedirectionUri() {
return redirectionUri;
}
public void setRedirectionUri(URL redirectionUri) {
this.redirectionUri = redirectionUri;
}
/**
* @return the state
*/
public String getState() {
return state;
}
/**
* @param state the state to set
*/
public void setState(String state) {
this.state = state;
}
}