package restfulchecker; import org.ntlab.radishforandroidstudio.framework.network.HttpAsyncConnection; public class RestAccount extends HttpAsyncConnection { private String url; public RestAccount(String url) { super(url); this.url = url; // TODO Auto-generated constructor stub } public String getUrl() { return url; } }