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

io.kubernetes.client.openapi.models.V1APIServiceConditionBuilder 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;
public class V1APIServiceConditionBuilder extends V1APIServiceConditionFluent implements VisitableBuilder{
  public V1APIServiceConditionBuilder() {
    this(new V1APIServiceCondition());
  }
  
  public V1APIServiceConditionBuilder(V1APIServiceConditionFluent fluent) {
    this(fluent, new V1APIServiceCondition());
  }
  
  public V1APIServiceConditionBuilder(V1APIServiceConditionFluent fluent,V1APIServiceCondition instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public V1APIServiceConditionBuilder(V1APIServiceCondition instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  V1APIServiceConditionFluent fluent;
  
  public V1APIServiceCondition build() {
    V1APIServiceCondition buildable = new V1APIServiceCondition();
    buildable.setLastTransitionTime(fluent.getLastTransitionTime());
    buildable.setMessage(fluent.getMessage());
    buildable.setReason(fluent.getReason());
    buildable.setStatus(fluent.getStatus());
    buildable.setType(fluent.getType());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy