All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.restbusters.integraton.tc.client.model.task.BuildExecutorTask Maven / Gradle / Ivy

Go to download

Automation and Release API and intergration support; supports REST APIs and external systems.

There is a newer version: 0.0.53
Show newest version
package com.restbusters.integraton.tc.client.model.task;

import com.restbusters.integraton.tc.client.model.post.job.PostBuild;
import lombok.Data;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

/**
 * @author Sasha Matsaylo on 12/25/21
 * @project qreasp
 */

@Data
public class BuildExecutorTask {

    private List postBuild;
    private boolean continueIfSequentialDeploymentFail = false;
    private boolean isDeploymentSequential;
    private String taskName;
    private String taskStatus;
    private String taskState;
    private String description;
    private Map buildMetaData;
    private int maxAttemptBuildCounter;
    private int maxWaitTime;
    private List> errors = new ArrayList<>();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy