Back to project page dropbox-android-sdk.
The source code is released under:
Copyright (c) 2009-2011 Dropbox Inc., http://www.dropbox.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "So...
If you think the Android project dropbox-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dropbox.client2.session; /* ww w. jav a 2 s. c om*/ import java.io.Serializable; /** * <p> * Holds a request token and secret for the web OAuth flow. * </p> */ 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); } }