Back to project page VolleyJoomla.
The source code is released under:
Apache License
If you think the Android project VolleyJoomla 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 de.ewackernagel.volley.joomla.pojos; //from w w w. j a v a 2 s.c o m public class JWebsite extends JConfiguration { private final String username; private final String password; public JWebsite( String host, String username, String password, String uuId ) { super(host, "", uuId); this.username = username; this.password = password; } public String getUsername() { return username; } public String getPassword() { return password; } }