Back to project page post-to-friendfeed.
The source code is released under:
Copyright (c) 2010, Larry Myers All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: R...
If you think the Android project post-to-friendfeed 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.larrymyers.android.posttoff; //from w w w . java2s . co m public class Auth { private String username; private String remoteKey; private String oauthToken; public Auth() { this.username = ""; this.remoteKey = ""; this.oauthToken = ""; } public String getBasicAuth() { return username + ":" + remoteKey; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getRemoteKey() { return remoteKey; } public void setRemoteKey(String remoteKey) { this.remoteKey = remoteKey; } public String getOauthToken() { return oauthToken; } public void setOauthToken(String oauthToken) { this.oauthToken = oauthToken; } }