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

Examples of org.platformlayer.ops.cas.jenkins.JenkinsClient.BuildId


      FingerprintInfo fingerprint = client.findByFingerprint(hash.toHex());
      if (fingerprint == null) {
        return null;
      }

      BuildId build = fingerprint.getOriginalBuild();
      if (build == null) {
        build = fingerprint.getFirstUsage();
        if (build == null) {
          log.warn("Cannot find build for fingerprint: " + hash.toHex());
          return null;
View Full Code Here

TOP

Related Classes of org.platformlayer.ops.cas.jenkins.JenkinsClient.BuildId

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.