Package nl.topicus.onderwijs.dashboard.datatypes.hudson

Examples of nl.topicus.onderwijs.dashboard.datatypes.hudson.Hudson


        StatusPageResponse response = RetrieverUtils.getStatuspage(url
            + "api/json");
        if (response.getHttpStatusCode() != 200) {
          return;
        }
        Hudson hudson = mapper.readValue(response.getPageContent(),
            Hudson.class);

        for (JobReference jobReference : hudson.getJobs()) {
          String name = jobReference.getName();
          for (Entry<String, String> patternEntry : patterns
              .entrySet()) {
            if (Pattern.matches(patternEntry.getValue(), name)) {
              refreshData(project, jobReference,
View Full Code Here

TOP

Related Classes of nl.topicus.onderwijs.dashboard.datatypes.hudson.Hudson

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.