Back to project page Helpers.
The source code is released under:
MIT License
If you think the Android project Helpers 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 at.wrdlbrnft.helpers.credentials; // w w w .j a v a 2 s . c o m import org.apache.http.auth.UsernamePasswordCredentials; /** * Created with IntelliJ Idea 13 * User: Xaver * Date: 26/05/14 */ public interface Credentials { public UsernamePasswordCredentials toUserPasswordCredentials(); public String getUsername(); public String getPassword(); }