@@ -52,9 +52,6 @@ public class DomainSpec {
5252 @ SerializedName ("asNodePort" )
5353 private Integer asNodePort = null ;
5454
55- @ SerializedName ("asEnv" )
56- private List <io .kubernetes .client .models .V1EnvVar > asEnv = null ;
57-
5855 @ SerializedName ("exportT3Channels" )
5956 private List <String > exportT3Channels = null ;
6057
@@ -230,33 +227,6 @@ public void setAsNodePort(Integer asNodePort) {
230227 this .asNodePort = asNodePort ;
231228 }
232229
233- public DomainSpec asEnv (List <io .kubernetes .client .models .V1EnvVar > asEnv ) {
234- this .asEnv = asEnv ;
235- return this ;
236- }
237-
238- public DomainSpec addAsEnvItem (io .kubernetes .client .models .V1EnvVar asEnvItem ) {
239- if (this .asEnv == null ) {
240- this .asEnv = new ArrayList <io .kubernetes .client .models .V1EnvVar >();
241- }
242- this .asEnv .add (asEnvItem );
243- return this ;
244- }
245-
246- /**
247- * Environment variables for use in starting the administration server.
248- *
249- * @return asEnv
250- **/
251- @ ApiModelProperty (value = "Environment variables for use in starting the administration server." )
252- public List <io .kubernetes .client .models .V1EnvVar > getAsEnv () {
253- return asEnv ;
254- }
255-
256- public void setAsEnv (List <io .kubernetes .client .models .V1EnvVar > asEnv ) {
257- this .asEnv = asEnv ;
258- }
259-
260230 public DomainSpec exportT3Channels (List <String > exportT3Channels ) {
261231 this .exportT3Channels = exportT3Channels ;
262232 return this ;
@@ -410,7 +380,6 @@ public boolean equals(java.lang.Object o) {
410380 && Objects .equals (this .asName , oracleKubernetesWeblogicDomainV1DomainSpec .asName )
411381 && Objects .equals (this .asPort , oracleKubernetesWeblogicDomainV1DomainSpec .asPort )
412382 && Objects .equals (this .asNodePort , oracleKubernetesWeblogicDomainV1DomainSpec .asNodePort )
413- && Objects .equals (this .asEnv , oracleKubernetesWeblogicDomainV1DomainSpec .asEnv )
414383 && Objects .equals (this .exportT3Channels , oracleKubernetesWeblogicDomainV1DomainSpec .exportT3Channels )
415384 && Objects .equals (this .startupControl , oracleKubernetesWeblogicDomainV1DomainSpec .startupControl )
416385 && Objects .equals (this .serverStartup , oracleKubernetesWeblogicDomainV1DomainSpec .serverStartup )
@@ -420,7 +389,7 @@ public boolean equals(java.lang.Object o) {
420389
421390 @ Override
422391 public int hashCode () {
423- return Objects .hash (domainUID , domainName , image , imagePullPolicy , adminSecret , asName , asPort , asNodePort , asEnv ,
392+ return Objects .hash (domainUID , domainName , image , imagePullPolicy , adminSecret , asName , asPort , asNodePort ,
424393 exportT3Channels , startupControl , serverStartup , clusterStartup , replicas );
425394 }
426395
@@ -437,7 +406,6 @@ public String toString() {
437406 sb .append (" asName: " ).append (toIndentedString (asName )).append ("\n " );
438407 sb .append (" asPort: " ).append (toIndentedString (asPort )).append ("\n " );
439408 sb .append (" asNodePort: " ).append (toIndentedString (asNodePort )).append ("\n " );
440- sb .append (" asEnv: " ).append (toIndentedString (asEnv )).append ("\n " );
441409 sb .append (" exportT3Channels: " ).append (toIndentedString (exportT3Channels )).append ("\n " );
442410 sb .append (" startupControl: " ).append (toIndentedString (startupControl )).append ("\n " );
443411 sb .append (" serverStartup: " ).append (toIndentedString (serverStartup )).append ("\n " );
0 commit comments