Package com.atlassian.bamboo.plan

Examples of com.atlassian.bamboo.plan.PlanResultKey


  }

  private ResultsSummary getResultSummary(Event event) {
    if (PlanResultEvent.class.isAssignableFrom(event.getClass())) {
      PlanResultEvent planResultEvent = (PlanResultEvent) event;
      PlanResultKey planResultKey = planResultEvent.getPlanResultKey();
      return resultsSummaryManager.getResultsSummary(planResultKey);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of com.atlassian.bamboo.plan.PlanResultKey

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.