@@ -36,17 +36,21 @@ public AnalysisParametersEntity(boolean withLimitViolations, boolean withVoltage
36
36
@ Column (name = "id" )
37
37
private UUID id ;
38
38
39
+ @ Builder .Default
39
40
@ Column (name = "withLimitViolations" , columnDefinition = "boolean default true" )
40
- private boolean withLimitViolations ;
41
+ private boolean withLimitViolations = true ;
41
42
43
+ @ Builder .Default
42
44
@ Column (name = "withVoltageResult" , columnDefinition = "boolean default true" )
43
- private boolean withVoltageResult ;
45
+ private boolean withVoltageResult = true ;
44
46
47
+ @ Builder .Default
45
48
@ Column (name = "withFortescueResult" , columnDefinition = "boolean default true" )
46
- private boolean withFortescueResult ;
49
+ private boolean withFortescueResult = true ;
47
50
51
+ @ Builder .Default
48
52
@ Column (name = "withFeederResult" , columnDefinition = "boolean default true" )
49
- private boolean withFeederResult ;
53
+ private boolean withFeederResult = true ;
50
54
51
55
@ Column (name = "studyType" )
52
56
@ Enumerated (EnumType .STRING )
@@ -59,17 +63,21 @@ public AnalysisParametersEntity(boolean withLimitViolations, boolean withVoltage
59
63
@ Enumerated (EnumType .STRING )
60
64
private ShortCircuitPredefinedConfiguration predefinedParameters ;
61
65
66
+ @ Builder .Default
62
67
@ Column (name = "withLoads" , columnDefinition = "boolean default false" )
63
- private boolean withLoads ;
68
+ private boolean withLoads = false ;
64
69
70
+ @ Builder .Default
65
71
@ Column (name = "withShuntCompensators" , columnDefinition = "boolean default false" )
66
- private boolean withShuntCompensators ;
72
+ private boolean withShuntCompensators = false ;
67
73
74
+ @ Builder .Default
68
75
@ Column (name = "withVscConverterStations" , columnDefinition = "boolean default true" )
69
- private boolean withVscConverterStations ;
76
+ private boolean withVscConverterStations = true ;
70
77
78
+ @ Builder .Default
71
79
@ Column (name = "withNeutralPosition" , columnDefinition = "boolean default true" )
72
- private boolean withNeutralPosition ;
80
+ private boolean withNeutralPosition = true ;
73
81
74
82
@ Column (name = "initialVoltageProfileMode" )
75
83
@ Enumerated (EnumType .STRING )
0 commit comments