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

io.github.microcks.operator.api.secret.v1alpha1.SecretSourceSpecBuilder Maven / Gradle / Ivy

There is a newer version: 0.0.2
Show newest version
package io.github.microcks.operator.api.secret.v1alpha1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class SecretSourceSpecBuilder extends SecretSourceSpecFluent implements VisitableBuilder{
  public SecretSourceSpecBuilder() {
    this(new SecretSourceSpec());
  }
  
  public SecretSourceSpecBuilder(SecretSourceSpecFluent fluent) {
    this(fluent, new SecretSourceSpec());
  }
  
  public SecretSourceSpecBuilder(SecretSourceSpecFluent fluent,SecretSourceSpec instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public SecretSourceSpecBuilder(SecretSourceSpec instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  SecretSourceSpecFluent fluent;
  
  public SecretSourceSpec build() {
    SecretSourceSpec buildable = new SecretSourceSpec();
    buildable.setSecrets(fluent.buildSecrets());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy