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

io.debezium.operator.api.model.PredicateBuilder Maven / Gradle / Ivy

There is a newer version: 3.0.2.Final
Show newest version
package io.debezium.operator.api.model;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class PredicateBuilder extends PredicateFluent implements VisitableBuilder{
  public PredicateBuilder() {
    this(new Predicate());
  }
  
  public PredicateBuilder(PredicateFluent fluent) {
    this(fluent, new Predicate());
  }
  
  public PredicateBuilder(PredicateFluent fluent,Predicate instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public PredicateBuilder(Predicate instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  PredicateFluent fluent;
  
  public Predicate build() {
    Predicate buildable = new Predicate();
    buildable.setType(fluent.getType());
    buildable.setConfig(fluent.getConfig());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy