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

com.powsybl.ws.commons.computation.service.AbstractComputationResultService Maven / Gradle / Ivy

/**
 * 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.powsybl.ws.commons.computation.service;

import java.util.List;
import java.util.UUID;

/**
 * @author Mathieu Deharbe 
 * @param  status specific to the computation
 */
public abstract class AbstractComputationResultService {

    public abstract void insertStatus(List resultUuids, S status);

    public abstract void delete(UUID resultUuid);

    public abstract void deleteAll();

    public abstract S findStatus(UUID resultUuid);
}