io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluentImpl 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 ApiextensionsV1WebhookClientConfigFluentImpl<
A extends ApiextensionsV1WebhookClientConfigFluent>
extends BaseFluent implements ApiextensionsV1WebhookClientConfigFluent {
public ApiextensionsV1WebhookClientConfigFluentImpl() {}
public ApiextensionsV1WebhookClientConfigFluentImpl(
io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfig instance) {
this.withCaBundle(instance.getCaBundle());
this.withService(instance.getService());
this.withUrl(instance.getUrl());
}
private List caBundle;
private ApiextensionsV1ServiceReferenceBuilder 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.ApiextensionsV1ServiceReference getService() {
return this.service != null ? this.service.build() : null;
}
public io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReference buildService() {
return this.service != null ? this.service.build() : null;
}
public A withService(
io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReference service) {
_visitables.get("service").remove(this.service);
if (service != null) {
this.service = new ApiextensionsV1ServiceReferenceBuilder(service);
_visitables.get("service").add(this.service);
}
return (A) this;
}
public java.lang.Boolean hasService() {
return this.service != null;
}
public ApiextensionsV1WebhookClientConfigFluent.ServiceNested withNewService() {
return new ApiextensionsV1WebhookClientConfigFluentImpl.ServiceNestedImpl();
}
public io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent.ServiceNested<
A>
withNewServiceLike(io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReference item) {
return new ApiextensionsV1WebhookClientConfigFluentImpl.ServiceNestedImpl(item);
}
public io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent.ServiceNested<
A>
editService() {
return withNewServiceLike(getService());
}
public io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent.ServiceNested<
A>
editOrNewService() {
return withNewServiceLike(
getService() != null
? getService()
: new io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReferenceBuilder()
.build());
}
public io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent.ServiceNested<
A>
editOrNewServiceLike(
io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReference 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;
ApiextensionsV1WebhookClientConfigFluentImpl that =
(ApiextensionsV1WebhookClientConfigFluentImpl) 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 ApiextensionsV1ServiceReferenceFluentImpl<
ApiextensionsV1WebhookClientConfigFluent.ServiceNested>
implements io.kubernetes.client.openapi.models.ApiextensionsV1WebhookClientConfigFluent
.ServiceNested<
N>,
Nested {
ServiceNestedImpl(io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReference item) {
this.builder = new ApiextensionsV1ServiceReferenceBuilder(this, item);
}
ServiceNestedImpl() {
this.builder =
new io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReferenceBuilder(this);
}
io.kubernetes.client.openapi.models.ApiextensionsV1ServiceReferenceBuilder builder;
public N and() {
return (N) ApiextensionsV1WebhookClientConfigFluentImpl.this.withService(builder.build());
}
public N endService() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy