1
- // Copyright (c) 2023, Oracle and/or its affiliates.
1
+ // Copyright (c) 2023, 2025, Oracle and/or its affiliates.
2
2
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
3
3
4
4
package oracle .weblogic .domain ;
@@ -57,7 +57,6 @@ public class InitializeDomainOnPV {
57
57
+ "WebLogic Deployment Tool 'encryptModel' command. "
58
58
+ "The secret must use the key 'passphrase' containing the actual passphrase for encryption." )
59
59
public String wdtModelEncryptionPassphraseSecret ;
60
-
61
60
62
61
public PersistentVolume getPersistentVolume () {
63
62
return persistentVolume ;
@@ -129,7 +128,8 @@ public String toString() {
129
128
.append ("persistentVolume" , persistentVolume )
130
129
.append ("persistentVolumeClaim" , persistentVolumeClaim )
131
130
.append ("domain" , domain )
132
- .append ("waitForPvcToBind" , waitForPvcToBind );
131
+ .append ("waitForPvcToBind" , waitForPvcToBind )
132
+ .append ("wdtModelEncryptionPassphraseSecret" , wdtModelEncryptionPassphraseSecret );
133
133
134
134
return builder .toString ();
135
135
}
@@ -140,7 +140,8 @@ public int hashCode() {
140
140
.append (persistentVolume )
141
141
.append (persistentVolumeClaim )
142
142
.append (domain )
143
- .append (waitForPvcToBind );
143
+ .append (waitForPvcToBind )
144
+ .append (wdtModelEncryptionPassphraseSecret );
144
145
145
146
return builder .toHashCode ();
146
147
}
0 commit comments