@@ -49,9 +49,6 @@ public class DomainSpec {
4949 @ SerializedName ("asPort" )
5050 private Integer asPort = null ;
5151
52- @ SerializedName ("asEnv" )
53- private List <io .kubernetes .client .models .V1EnvVar > asEnv = null ;
54-
5552 @ SerializedName ("exportT3Channels" )
5653 private List <String > exportT3Channels = null ;
5754
@@ -205,33 +202,9 @@ public void setAsPort(Integer asPort) {
205202 this .asPort = asPort ;
206203 }
207204
208- public DomainSpec asEnv (List <io .kubernetes .client .models .V1EnvVar > asEnv ) {
209- this .asEnv = asEnv ;
210- return this ;
211- }
212-
213- public DomainSpec addAsEnvItem (io .kubernetes .client .models .V1EnvVar asEnvItem ) {
214- if (this .asEnv == null ) {
215- this .asEnv = new ArrayList <io .kubernetes .client .models .V1EnvVar >();
216- }
217- this .asEnv .add (asEnvItem );
218205 return this ;
219206 }
220207
221- /**
222- * Environment variables for use in starting the administration server.
223- *
224- * @return asEnv
225- **/
226- @ ApiModelProperty (value = "Environment variables for use in starting the administration server." )
227- public List <io .kubernetes .client .models .V1EnvVar > getAsEnv () {
228- return asEnv ;
229- }
230-
231- public void setAsEnv (List <io .kubernetes .client .models .V1EnvVar > asEnv ) {
232- this .asEnv = asEnv ;
233- }
234-
235208 public DomainSpec exportT3Channels (List <String > exportT3Channels ) {
236209 this .exportT3Channels = exportT3Channels ;
237210 return this ;
@@ -384,7 +357,6 @@ public boolean equals(java.lang.Object o) {
384357 && Objects .equals (this .adminSecret , oracleKubernetesWeblogicDomainV1DomainSpec .adminSecret )
385358 && Objects .equals (this .asName , oracleKubernetesWeblogicDomainV1DomainSpec .asName )
386359 && Objects .equals (this .asPort , oracleKubernetesWeblogicDomainV1DomainSpec .asPort )
387- && Objects .equals (this .asEnv , oracleKubernetesWeblogicDomainV1DomainSpec .asEnv )
388360 && Objects .equals (this .exportT3Channels , oracleKubernetesWeblogicDomainV1DomainSpec .exportT3Channels )
389361 && Objects .equals (this .startupControl , oracleKubernetesWeblogicDomainV1DomainSpec .startupControl )
390362 && Objects .equals (this .serverStartup , oracleKubernetesWeblogicDomainV1DomainSpec .serverStartup )
@@ -394,7 +366,7 @@ public boolean equals(java.lang.Object o) {
394366
395367 @ Override
396368 public int hashCode () {
397- return Objects .hash (domainUID , domainName , image , imagePullPolicy , adminSecret , asName , asPort , asEnv ,
369+ return Objects .hash (domainUID , domainName , image , imagePullPolicy , adminSecret , asName , asPort ,
398370 exportT3Channels , startupControl , serverStartup , clusterStartup , replicas );
399371 }
400372
@@ -410,7 +382,6 @@ public String toString() {
410382 sb .append (" adminSecret: " ).append (toIndentedString (adminSecret )).append ("\n " );
411383 sb .append (" asName: " ).append (toIndentedString (asName )).append ("\n " );
412384 sb .append (" asPort: " ).append (toIndentedString (asPort )).append ("\n " );
413- sb .append (" asEnv: " ).append (toIndentedString (asEnv )).append ("\n " );
414385 sb .append (" exportT3Channels: " ).append (toIndentedString (exportT3Channels )).append ("\n " );
415386 sb .append (" startupControl: " ).append (toIndentedString (startupControl )).append ("\n " );
416387 sb .append (" serverStartup: " ).append (toIndentedString (serverStartup )).append ("\n " );
0 commit comments