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

com.farao_community.farao.gridcapa.task_manager.api.ProcessRunDto Maven / Gradle / Ivy

There is a newer version: 1.32.1
Show newest version
/*
 * Copyright (c) 2024, RTE (http://www.rte-france.com)
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package com.farao_community.farao.gridcapa.task_manager.api;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;

import java.time.OffsetDateTime;
import java.util.List;
import java.util.UUID;

/**
 * @author Vincent Bochet {@literal }
 */
public class ProcessRunDto {
    private final UUID id;
    private final OffsetDateTime executionDate;
    private final List inputs;

    @JsonCreator
    public ProcessRunDto(@JsonProperty("id") UUID id,
                         @JsonProperty("executionDate") OffsetDateTime executionDate,
                         @JsonProperty("inputFiles") List inputFiles) {
        this.id = id;
        this.executionDate = executionDate;
        this.inputs = inputFiles;
    }

    public UUID getId() {
        return id;
    }

    public OffsetDateTime getExecutionDate() {
        return executionDate;
    }

    public List getInputs() {
        return inputs;
    }

    public String toString() {
        return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy