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

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

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Boolean;
public class V1beta1SubjectBuilder extends V1beta1SubjectFluentImpl implements VisitableBuilder{
  public V1beta1SubjectBuilder() {
    this(false);
  }
  public V1beta1SubjectBuilder(Boolean validationEnabled) {
    this(new V1beta1Subject(), validationEnabled);
  }
  public V1beta1SubjectBuilder(V1beta1SubjectFluent fluent) {
    this(fluent, false);
  }
  public V1beta1SubjectBuilder(V1beta1SubjectFluent fluent,Boolean validationEnabled) {
    this(fluent, new V1beta1Subject(), validationEnabled);
  }
  public V1beta1SubjectBuilder(V1beta1SubjectFluent fluent,V1beta1Subject instance) {
    this(fluent, instance, false);
  }
  public V1beta1SubjectBuilder(V1beta1SubjectFluent fluent,V1beta1Subject instance,Boolean validationEnabled) {
    this.fluent = fluent; 
    fluent.withGroup(instance.getGroup());

    fluent.withKind(instance.getKind());

    fluent.withServiceAccount(instance.getServiceAccount());

    fluent.withUser(instance.getUser());

    this.validationEnabled = validationEnabled; 
  }
  public V1beta1SubjectBuilder(V1beta1Subject instance) {
    this(instance,false);
  }
  public V1beta1SubjectBuilder(V1beta1Subject instance,Boolean validationEnabled) {
    this.fluent = this; 
    this.withGroup(instance.getGroup());

    this.withKind(instance.getKind());

    this.withServiceAccount(instance.getServiceAccount());

    this.withUser(instance.getUser());

    this.validationEnabled = validationEnabled; 
  }
  V1beta1SubjectFluent fluent;
  Boolean validationEnabled;
  public V1beta1Subject build() {
    V1beta1Subject buildable = new V1beta1Subject();
    buildable.setGroup(fluent.getGroup());
    buildable.setKind(fluent.getKind());
    buildable.setServiceAccount(fluent.getServiceAccount());
    buildable.setUser(fluent.getUser());
    return buildable;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy