Back to project page NewAndroidTwitter.
The source code is released under:
Apache License
If you think the Android project NewAndroidTwitter 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 net.londatiga.android.twitter.oauth; /*from ww w. ja v a 2 s .c o m*/ /** * Oauth request token. * * @author Lorensius W. L. T <lorenz@londatiga.net> * */ public class OauthToken { private String token; private String secret; private boolean callbackConfirmed; public OauthToken(String token, String secret, boolean callbackConfirmed) { this.token = token; this.secret = secret; this.callbackConfirmed = callbackConfirmed; } public String getToken() { return token; } public String getSecret() { return secret; } public boolean callbackConfirmed() { return callbackConfirmed; } }