Skip to content

Commit 11c4159

Browse files
Mark obsolete entities security parameters of #502 as it (#554)
1 parent cdd1518 commit 11c4159

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/org/gridsuite/study/server/repository/SecurityAnalysisParametersEntity.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,17 @@
1313

1414
/**
1515
* @author AJELLAL Ali <[email protected]>
16+
* @deprecated to remove when the data is migrated into the security-analysis-server
1617
*/
17-
18+
@Deprecated(forRemoval = true, since = "1.3.0")
1819
@NoArgsConstructor
1920
@AllArgsConstructor
2021
@Getter
2122
@Setter
2223
@Entity
2324
@Builder
2425
@Table(name = "securityAnalysisParameters")
25-
public class SecurityAnalysisParametersEntity {
26+
class SecurityAnalysisParametersEntity {
2627
public SecurityAnalysisParametersEntity(double lowVoltageAbsoluteThreshold, double lowVoltageProportionalThreshold, double highVoltageAbsoluteThreshold, double highVoltageProportionalThreshold, double flowProportionalThreshold) {
2728
this(null, lowVoltageAbsoluteThreshold, lowVoltageProportionalThreshold, highVoltageAbsoluteThreshold, highVoltageProportionalThreshold, flowProportionalThreshold);
2829
}

0 commit comments

Comments
 (0)