Package org.platformlayer.ops.cas.jenkins.JenkinsClient.BuildInfo

Examples of org.platformlayer.ops.cas.jenkins.JenkinsClient.BuildInfo.ArtifactInfo


      if (buildInfo == null) {
        return null;
      }

      String fingerprintFileName = fingerprint.getFileName();
      ArtifactInfo found = buildInfo.findArtifactByFileName(fingerprintFileName);
      if (found == null) {
        log.warn("Could not find artifact: " + fingerprint + " in " + buildInfo);
        return null;
      }

      URI url = found.getArtifactUrl();
      return new JenkinsCasObject(this, hash, url);
    } catch (JenkinsException e) {
      throw new OpsException("Error communicating with Jenkins", e);
    }
  }
View Full Code Here

TOP

Related Classes of org.platformlayer.ops.cas.jenkins.JenkinsClient.BuildInfo.ArtifactInfo

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.