Back to project page cheepcheep.
The source code is released under:
Apache License
If you think the Android project cheepcheep 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 org.tarrio.cheepcheep.model; /* www . j a v a 2s . c om*/ public class Preferences { private String username; private String consumerToken; private String consumerSecret; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getConsumerToken() { return consumerToken; } public void setConsumerToken(String consumerToken) { this.consumerToken = consumerToken; } public String getConsumerSecret() { return consumerSecret; } public void setConsumerSecret(String consumerSecret) { this.consumerSecret = consumerSecret; } }