Skip to content

Commit 60201cf

Browse files
authored
remove these properties from oracle.weblogic.domain.Configuration (#3477)
@ApiModelProperty("Use online update.") private Boolean useOnlineUpdate = false; @ApiModelProperty("Rollback the changes if the update require domain restart.") private Boolean rollBackIfRestartRequired = false;
1 parent 38938d8 commit 60201cf

File tree

1 file changed

+0
-39
lines changed

1 file changed

+0
-39
lines changed

integration-tests/src/test/java/oracle/weblogic/domain/Configuration.java

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@ public class Configuration {
4141
+ "Legal values are DYNAMIC (the default) and ON_RESTART. See also introspectVersion.")
4242
private String overrideDistributionStrategy;
4343

44-
@ApiModelProperty("Use online update.")
45-
private Boolean useOnlineUpdate = false;
46-
47-
@ApiModelProperty("Rollback the changes if the update require domain restart.")
48-
private Boolean rollBackIfRestartRequired = false;
49-
5044
@ApiModelProperty("Istio service mesh integration")
5145
private Istio istio;
5246

@@ -84,33 +78,6 @@ public void setOpss(Opss opss) {
8478
this.opss = opss;
8579
}
8680

87-
public Configuration rollBackIfRestartRequired(boolean rollBackIfRestartRequired) {
88-
this.rollBackIfRestartRequired = rollBackIfRestartRequired;
89-
return this;
90-
}
91-
92-
public Boolean getRollBackIfRestartRequired() {
93-
return rollBackIfRestartRequired;
94-
}
95-
96-
public void setRollBackIfRestartRequired(boolean rollBackIfRestartRequired) {
97-
this.rollBackIfRestartRequired = rollBackIfRestartRequired;
98-
}
99-
100-
public Configuration useOnlineUpdate(boolean useOnlineUpdate) {
101-
this.useOnlineUpdate = useOnlineUpdate;
102-
return this;
103-
}
104-
105-
public Boolean getUseOnlineUpdate() {
106-
return useOnlineUpdate;
107-
}
108-
109-
public void setUseOnlineUpdate(boolean useOnlineUpdate) {
110-
this.useOnlineUpdate = useOnlineUpdate;
111-
}
112-
113-
11481
public Configuration secrets(List<String> secrets) {
11582
this.secrets = secrets;
11683
return this;
@@ -215,8 +182,6 @@ public String toString() {
215182
.append("secrets", secrets)
216183
.append("overridesConfigMap", overridesConfigMap)
217184
.append("introspectorJobActiveDeadlineSeconds", introspectorJobActiveDeadlineSeconds)
218-
.append("useOnlineUpdate", useOnlineUpdate)
219-
.append("rollBackIfRestartRequired", rollBackIfRestartRequired)
220185
.append("istio", istio);
221186

222187
return builder.toString();
@@ -231,8 +196,6 @@ public int hashCode() {
231196
.append(secrets)
232197
.append(overridesConfigMap)
233198
.append(introspectorJobActiveDeadlineSeconds)
234-
.append(useOnlineUpdate)
235-
.append(rollBackIfRestartRequired)
236199
.append(istio);
237200

238201
return builder.toHashCode();
@@ -255,8 +218,6 @@ public boolean equals(Object other) {
255218
.append(secrets, rhs.secrets)
256219
.append(overridesConfigMap, rhs.overridesConfigMap)
257220
.append(introspectorJobActiveDeadlineSeconds, rhs.introspectorJobActiveDeadlineSeconds)
258-
.append(useOnlineUpdate, rhs.useOnlineUpdate)
259-
.append(rollBackIfRestartRequired, rhs.rollBackIfRestartRequired)
260221
.append(istio, rhs.istio);
261222

262223
return builder.isEquals();

0 commit comments

Comments
 (0)