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

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

Go to download

The Dropbox API for Java is a Dropbox supported client library for accessing the JSON+REST interface to Dropbox. It supports OAuth proxied authentication. It is designed to be simple and easy to use, as well as instructional in case you want to write your own. It is MIT licensed.

The newest version!
package com.dropbox.client2.session;

import java.io.Serializable;

/**
 * 

* Holds a user's access token and secret. *

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy