All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kubernetes.client.openapi.models.V1HTTPHeaderBuilder Maven / Gradle / Ivy

The newest version!
package io.kubernetes.client.openapi.models;

import io.kubernetes.client.fluent.VisitableBuilder;
public class V1HTTPHeaderBuilder extends V1HTTPHeaderFluent implements VisitableBuilder{
  public V1HTTPHeaderBuilder() {
    this(new V1HTTPHeader());
  }
  
  public V1HTTPHeaderBuilder(V1HTTPHeaderFluent fluent) {
    this(fluent, new V1HTTPHeader());
  }
  
  public V1HTTPHeaderBuilder(V1HTTPHeaderFluent fluent,V1HTTPHeader instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public V1HTTPHeaderBuilder(V1HTTPHeader instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  V1HTTPHeaderFluent fluent;
  
  public V1HTTPHeader build() {
    V1HTTPHeader buildable = new V1HTTPHeader();
    buildable.setName(fluent.getName());
    buildable.setValue(fluent.getValue());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy