Back to project page android_sdk.
The source code is released under:
GNU Lesser General Public License
If you think the Android project android_sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2013 Spunk Media Pvt Ltd (www.qubecell.com) *//*from w w w . j a v a 2s . co m*/ package com.qubecell.constants; /** * The NetworkResponse class has network response code information. * @author Eninov * */ public class NetworkResponse { public int netRespCode = -1; public String respStr = null; public NetworkResponse() { netRespCode = -1; respStr = null; } }