com.liferay.jenkins.results.parser.TopLevelBuild Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.jenkins.results.parser
Show all versions of com.liferay.jenkins.results.parser
Liferay Jenkins Results Parser
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.jenkins.results.parser;
import java.io.File;
import java.util.List;
import java.util.Map;
import org.dom4j.Element;
/**
* @author Michael Hashimoto
*/
public interface TopLevelBuild extends ParentBuild {
public String getAcceptanceUpstreamJobName();
public String getAcceptanceUpstreamJobURL();
public long getAverageDelayTime();
public Map getBaseGitRepositoryDetailsTempMap();
public Build getControllerBuild();
public AxisBuild getDownstreamAxisBuild(String axisName);
public List getDownstreamAxisBuilds();
public BatchBuild getDownstreamBatchBuild(String jobVariant);
public List getDownstreamBatchBuilds();
public DownstreamBuild getDownstreamBuild(String axisName);
public String getJenkinsReport();
public Element getJenkinsReportElement();
public String getJenkinsReportURL();
public File getJobSummaryDir();
public int getJobVariantsDownstreamBuildCount(
List jobVariants, String result, String status);
public List getJobVariantsDownstreamBuilds(
Iterable jobVariants, String result, String status);
public List getProjectNames();
public String getStatusSummary();
public Element getValidationGitHubMessageElement();
}