io.kubernetes.client.openapi.models.AdmissionregistrationV1WebhookClientConfigFluentImpl Maven / Gradle / Ivy
/*
Copyright 2022 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.BaseFluent;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/** Generated */
@SuppressWarnings(value = "unchecked")
public class AdmissionregistrationV1WebhookClientConfigFluentImpl<
A extends AdmissionregistrationV1WebhookClientConfigFluent>
extends BaseFluent implements AdmissionregistrationV1WebhookClientConfigFluent {
public AdmissionregistrationV1WebhookClientConfigFluentImpl() {}
public AdmissionregistrationV1WebhookClientConfigFluentImpl(
io.kubernetes.client.openapi.models.AdmissionregistrationV1WebhookClientConfig instance) {
this.withCaBundle(instance.getCaBundle());
this.withService(instance.getService());
this.withUrl(instance.getUrl());
}
private List caBundle;
private AdmissionregistrationV1ServiceReferenceBuilder service;
private String url;
public A withCaBundle(byte... caBundle) {
if (this.caBundle != null) {
this.caBundle.clear();
}
if (caBundle != null) {
for (byte item : caBundle) {
this.addToCaBundle(item);
}
}
return (A) this;
}
public byte[] getCaBundle() {
// This needs to work with primitives, so we use arrays.
int size = caBundle != null ? caBundle.size() : 0;
byte[] result = new byte[size];
if (size == 0) {
return result;
}
int index = 0;
for (byte item : caBundle) {
result[index++] = item;
}
return result;
}
public A addToCaBundle(Integer index, java.lang.Byte item) {
if (this.caBundle == null) {
this.caBundle = new ArrayList();
}
this.caBundle.add(index, item);
return (A) this;
}
public A setToCaBundle(java.lang.Integer index, java.lang.Byte item) {
if (this.caBundle == null) {
this.caBundle = new java.util.ArrayList();
}
this.caBundle.set(index, item);
return (A) this;
}
public A addToCaBundle(java.lang.Byte... items) {
if (this.caBundle == null) {
this.caBundle = new java.util.ArrayList();
}
for (java.lang.Byte item : items) {
this.caBundle.add(item);
}
return (A) this;
}
public A addAllToCaBundle(Collection items) {
if (this.caBundle == null) {
this.caBundle = new java.util.ArrayList();
}
for (java.lang.Byte item : items) {
this.caBundle.add(item);
}
return (A) this;
}
public A removeFromCaBundle(java.lang.Byte... items) {
for (java.lang.Byte item : items) {
if (this.caBundle != null) {
this.caBundle.remove(item);
}
}
return (A) this;
}
public A removeAllFromCaBundle(java.util.Collection items) {
for (java.lang.Byte item : items) {
if (this.caBundle != null) {
this.caBundle.remove(item);
}
}
return (A) this;
}
public Boolean hasCaBundle() {
return caBundle != null && !caBundle.isEmpty();
}
/**
* This method has been deprecated, please use method buildService instead.
*
* @return The buildable object.
*/
@Deprecated
public io.kubernetes.client.openapi.models.AdmissionregistrationV1ServiceReference getService() {
return this.service != null ? this.service.build() : null;
}
public io.kubernetes.client.openapi.models.AdmissionregistrationV1ServiceReference
buildService() {
return this.service != null ? this.service.build() : null;
}
public A withService(
io.kubernetes.client.openapi.models.AdmissionregistrationV1ServiceReference service) {
_visitables.get("service").remove(this.service);
if (service != null) {
this.service = new AdmissionregistrationV1ServiceReferenceBuilder(service);
_visitables.get("service").add(this.service);
}
return (A) this;
}
public java.lang.Boolean hasService() {
return this.service != null;
}
public AdmissionregistrationV1WebhookClientConfigFluent.ServiceNested withNewService() {
return new AdmissionregistrationV1WebhookClientConfigFluentImpl.ServiceNestedImpl();
}
public io.kubernetes.client.openapi.models.AdmissionregistrationV1WebhookClientConfigFluent
.ServiceNested<
A>
withNewServiceLike(
io.kubernetes.client.openapi.models.AdmissionregistrationV1ServiceReference item) {
return new AdmissionregistrationV1WebhookClientConfigFluentImpl.ServiceNestedImpl(item);
}
public io.kubernetes.client.openapi.models.AdmissionregistrationV1WebhookClientConfigFluent
.ServiceNested<
A>
editService() {
return withNewServiceLike(getService());
}
public io.kubernetes.client.openapi.models.AdmissionregistrationV1WebhookClientConfigFluent
.ServiceNested<
A>
editOrNewService() {
return withNewServiceLike(
getService() != null
? getService()
: new io.kubernetes.client.openapi.models
.AdmissionregistrationV1ServiceReferenceBuilder()
.build());
}
public io.kubernetes.client.openapi.models.AdmissionregistrationV1WebhookClientConfigFluent
.ServiceNested<
A>
editOrNewServiceLike(
io.kubernetes.client.openapi.models.AdmissionregistrationV1ServiceReference item) {
return withNewServiceLike(getService() != null ? getService() : item);
}
public java.lang.String getUrl() {
return this.url;
}
public A withUrl(java.lang.String url) {
this.url = url;
return (A) this;
}
public java.lang.Boolean hasUrl() {
return this.url != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
AdmissionregistrationV1WebhookClientConfigFluentImpl that =
(AdmissionregistrationV1WebhookClientConfigFluentImpl) o;
if (caBundle != null ? !caBundle.equals(that.caBundle) : that.caBundle != null) return false;
if (service != null ? !service.equals(that.service) : that.service != null) return false;
if (url != null ? !url.equals(that.url) : that.url != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(caBundle, service, url, super.hashCode());
}
public java.lang.String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (caBundle != null && !caBundle.isEmpty()) {
sb.append("caBundle:");
sb.append(caBundle + ",");
}
if (service != null) {
sb.append("service:");
sb.append(service + ",");
}
if (url != null) {
sb.append("url:");
sb.append(url);
}
sb.append("}");
return sb.toString();
}
class ServiceNestedImpl
extends AdmissionregistrationV1ServiceReferenceFluentImpl<
AdmissionregistrationV1WebhookClientConfigFluent.ServiceNested>
implements io.kubernetes.client.openapi.models
.AdmissionregistrationV1WebhookClientConfigFluent.ServiceNested<
N>,
Nested {
ServiceNestedImpl(AdmissionregistrationV1ServiceReference item) {
this.builder = new AdmissionregistrationV1ServiceReferenceBuilder(this, item);
}
ServiceNestedImpl() {
this.builder =
new io.kubernetes.client.openapi.models.AdmissionregistrationV1ServiceReferenceBuilder(
this);
}
io.kubernetes.client.openapi.models.AdmissionregistrationV1ServiceReferenceBuilder builder;
public N and() {
return (N)
AdmissionregistrationV1WebhookClientConfigFluentImpl.this.withService(builder.build());
}
public N endService() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy