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

com.chutneytesting.campaign.api.dto.CampaignDto Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-FileCopyrightText: 2017-2024 Enedis
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 */

package com.chutneytesting.campaign.api.dto;

import static java.util.Optional.ofNullable;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.ArrayList;
import java.util.List;

@JsonIgnoreProperties(ignoreUnknown = true)
public class CampaignDto {

    private Long id;
    private String title;
    private String description;
    private List scenarios;
    private List campaignExecutionReports;
    private String environment;
    private boolean parallelRun;
    private boolean retryAuto;
    private String datasetId;
    private List tags;

    public CampaignDto() {
    }

    public CampaignDto(Long id,
                       String title,
                       String description,
                       List scenarios,
                       List campaignExecutionReports,
                       String environment,
                       boolean parallelRun,
                       boolean retryAuto,
                       String datasetId,
                       List tags) {
        this.id = id;
        this.title = title;
        this.description = description;
        this.scenarios = ofNullable(scenarios).orElseGet(ArrayList::new);
        this.campaignExecutionReports = ofNullable(campaignExecutionReports).orElseGet(ArrayList::new);
        this.environment = environment;
        this.parallelRun = parallelRun;
        this.retryAuto = retryAuto;
        this.datasetId = datasetId;
        this.tags = ofNullable(tags).orElseGet(ArrayList::new);
    }

    public Long getId() {
        return id;
    }

    public String getTitle() {
        return title;
    }

    public String getDescription() {
        return description;
    }

    public List getScenarios() {
        return scenarios;
    }

    public List getCampaignExecutionReports() {
        return campaignExecutionReports;
    }

    public String getEnvironment() {
        return environment;
    }

    public boolean isParallelRun() {
        return parallelRun;
    }

    public boolean isRetryAuto() {
        return retryAuto;
    }

    public String getDatasetId() {
        return datasetId;
    }

    public List getTags() {
        return tags;
    }

    public record CampaignScenarioDto(String scenarioId, String datasetId) {
        public CampaignScenarioDto(String scenarioId) {
            this(scenarioId, null);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy