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

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

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 - 2025 Weber Informatics LLC | Privacy Policy