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; /* www . j av a2 s . c om*/ /** * Oauth consumer. * * @author Lorensius W. L. T <lorenz@londatiga.net> * */ public class OauthConsumer { private String consumerKey; private String consumerSecret; private String callbackUrl; public OauthConsumer(String consumerKey, String consumerSecret, String callbackUrl) { this.consumerKey = consumerKey; this.consumerSecret = consumerSecret; this.callbackUrl = callbackUrl; } public String getConsumerKey() { return consumerKey; } public String getConsumerSecret() { return consumerSecret; } public String getCallbackUrl() { return callbackUrl; } }