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

com.dropbox.client2.session.RequestTokenPair Maven / Gradle / Ivy

package com.dropbox.client2.session;

import java.io.Serializable;

/**
 * 

* Holds a request token and secret for the web OAuth flow. *

*/ public final class RequestTokenPair extends AccessTokenPair implements Serializable { // Do not change. private static final long serialVersionUID = 7933124160414910085L; public RequestTokenPair(String key, String secret) { super(key, secret); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy