@@ -56,15 +56,15 @@ public ShortCircuitParametersEntity(@NonNull final ShortCircuitParametersEntity
56
56
private UUID id ;
57
57
58
58
@ Builder .Default
59
- @ Column (name = "withLimitViolations" , columnDefinition = "boolean default true" )
59
+ @ Column (name = "withLimitViolations" , nullable = false , columnDefinition = "boolean default true" )
60
60
private boolean withLimitViolations = true ;
61
61
62
62
@ Builder .Default
63
- @ Column (name = "withVoltageResult" , columnDefinition = "boolean default false" )
63
+ @ Column (name = "withVoltageResult" , nullable = false , columnDefinition = "boolean default false" )
64
64
private boolean withVoltageResult = false ;
65
65
66
66
@ Builder .Default
67
- @ Column (name = "withFeederResult" , columnDefinition = "boolean default true" )
67
+ @ Column (name = "withFeederResult" , nullable = false , columnDefinition = "boolean default true" )
68
68
private boolean withFeederResult = true ;
69
69
70
70
@ Builder .Default
@@ -73,7 +73,7 @@ public ShortCircuitParametersEntity(@NonNull final ShortCircuitParametersEntity
73
73
private StudyType studyType = StudyType .TRANSIENT ;
74
74
75
75
@ Builder .Default
76
- @ Column (name = "minVoltageDropProportionalThreshold" , columnDefinition = "double precision default 20.0" )
76
+ @ Column (name = "minVoltageDropProportionalThreshold" , nullable = false , columnDefinition = "double precision default 20.0" )
77
77
private double minVoltageDropProportionalThreshold = 20.0 ;
78
78
79
79
@ Builder .Default
@@ -82,19 +82,19 @@ public ShortCircuitParametersEntity(@NonNull final ShortCircuitParametersEntity
82
82
private ShortCircuitPredefinedConfiguration predefinedParameters = ShortCircuitPredefinedConfiguration .ICC_MAX_WITH_NOMINAL_VOLTAGE_MAP ;
83
83
84
84
@ Builder .Default
85
- @ Column (name = "withLoads" , columnDefinition = "boolean default false" )
85
+ @ Column (name = "withLoads" , nullable = false , columnDefinition = "boolean default false" )
86
86
private boolean withLoads = false ;
87
87
88
88
@ Builder .Default
89
- @ Column (name = "withShuntCompensators" , columnDefinition = "boolean default false" )
89
+ @ Column (name = "withShuntCompensators" , nullable = false , columnDefinition = "boolean default false" )
90
90
private boolean withShuntCompensators = false ;
91
91
92
92
@ Builder .Default
93
- @ Column (name = "withVscConverterStations" , columnDefinition = "boolean default true" )
93
+ @ Column (name = "withVscConverterStations" , nullable = false , columnDefinition = "boolean default true" )
94
94
private boolean withVscConverterStations = true ;
95
95
96
96
@ Builder .Default
97
- @ Column (name = "withNeutralPosition" , columnDefinition = "boolean default true" )
97
+ @ Column (name = "withNeutralPosition" , nullable = false , columnDefinition = "boolean default true" )
98
98
private boolean withNeutralPosition = true ;
99
99
100
100
@ Builder .Default
0 commit comments