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

io.fabric8.knative.sources.v1alpha1.SecretValueFromSourceBuilder Maven / Gradle / Ivy

package io.fabric8.knative.sources.v1alpha1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class SecretValueFromSourceBuilder extends SecretValueFromSourceFluent implements VisitableBuilder{
  public SecretValueFromSourceBuilder() {
    this(new SecretValueFromSource());
  }
  
  public SecretValueFromSourceBuilder(SecretValueFromSourceFluent fluent) {
    this(fluent, new SecretValueFromSource());
  }
  
  public SecretValueFromSourceBuilder(SecretValueFromSourceFluent fluent,SecretValueFromSource instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public SecretValueFromSourceBuilder(SecretValueFromSource instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  SecretValueFromSourceFluent fluent;
  
  public SecretValueFromSource build() {
    SecretValueFromSource buildable = new SecretValueFromSource(fluent.getSecretKeyRef());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy