public JobConnector(String jobUrl)
 {
     WebUtils webUtils = new WebUtils();
     String response = webUtils.getResponse(jobUrl, urlEnding);
     initXml(response);
 }
 private void initBuild(String buildUrl)
 {
     WebUtils webUtils = new WebUtils();
     String response = webUtils.getResponse(buildUrl, urlEnding);
     initXml(response);
 }
 public LogConnector(String url)
 {
     WebUtils webUtils = new WebUtils();
     this.log = webUtils.getResponse(url, urlEnding);
 }
 public ViewConnector(String url)
 {
     WebUtils webUtils = new WebUtils();
     String response = webUtils.getResponse(url, urlEnding);
     initXml(response);
 }