com.farao_community.farao.data.native_crac_api.NativeCrac Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of farao-native-crac-api Show documentation
Show all versions of farao-native-crac-api Show documentation
Native CRAC business model API
/*
* Copyright (c) 2021, 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.data.native_crac_api;
/**
* Common interface for all NativeCrac objects.
*
* A NativeCrac is an object which contains all the raw information of a CRAC native file. Where
* CRAC stands for 'Contingency list, Remedial Actions and additional Constraints'.
*
* @author Baptiste Seguinot {@literal }
*/
public interface NativeCrac {
/**
* Get a unique identifier of the native format from which the NativeCrac has been imported.
*/
String getFormat();
}