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; //from w w w . jav a2s .c o m import com.android.volley.Response.ErrorListener; import com.android.volley.Response.Listener; import de.ewackernagel.volley.joomla.pojos.JCategory; import de.ewackernagel.volley.joomla.pojos.JConfiguration; public class JCategoriesRequest extends GsonJRequest<JCategory[]> { public JCategoriesRequest(JConfiguration configuration, Listener<JCategory[]> successListener, ErrorListener errorListener) { super(configuration, "api/content.php?task=getcats", JCategory[].class, null, null, successListener, errorListener); } }