1 /**
  2 * @class ProviderGET
  3 * @extends Provider
  4 **/
  5 wso2vis.p.ProviderGETJSON = function(url) {
  6 	this.url = url;
  7 	this.xmlHttpReq = null;
  8 	
  9 	wso2vis.p.Provider.call(this);
 10 };
 11 
 12 wso2vis.extend(wso2vis.p.ProviderGETJSON, wso2vis.p.ProviderGET);
 13 
 14 
 15 wso2vis.p.ProviderGETJSON.prototype.parseResponse = function(response, that) {
 16 
 17     return JSON.parse(response);
 18 }
 19