Examples of BuildServerBuildInfo


Examples of net.mgorski.quicktag.api.BuildServerBuildInfo

   *
   * @return Information gathered from Bamboo.
   */
  @Override
  public BuildServerBuildInfo gatherBuildServerInfo(Log log) {
    return new BuildServerBuildInfo(bambooBuildPlanName, bambooBuildNumber, bambooBuildTimeStamp);
  }
View Full Code Here

Examples of net.mgorski.quicktag.api.BuildServerBuildInfo

     *
     * @return Information gathered from TeamCity.
     */
    @Override
    public BuildServerBuildInfo gatherBuildServerInfo(Log log) {
        return new BuildServerBuildInfo(buildPlan, buildId, buildTime);
    }
View Full Code Here

Examples of net.mgorski.quicktag.api.BuildServerBuildInfo

     *
     * @return Information gathered from Jenkins.
     */
    @Override
    public BuildServerBuildInfo gatherBuildServerInfo(Log log) {
        return new BuildServerBuildInfo(buildPlan, buildId, buildTime);
    }
View Full Code Here

Examples of net.mgorski.quicktag.api.BuildServerBuildInfo

   * @return The result of the first gatherer that is non-<code>null</code>.
   * @param log message to be logged
   */
  @Override
  public BuildServerBuildInfo gatherBuildServerInfo(Log log) {
    BuildServerBuildInfo result;
    for (BuildServerBuildInformationGatherer gatherer : gatherers) {
      result = gatherer.gatherBuildServerInfo(log);
      if (result != null) {
        return result;
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.