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

com.microsoft.bingads.internal.OAuthUrlParameters Maven / Gradle / Ivy

Go to download

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.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy