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

io.fabric8.openclustermanagement.api.model.discovery.v1alpha1.DiscoveredClusterSpecBuilder Maven / Gradle / Ivy

There is a newer version: 6.13.3
Show newest version
package io.fabric8.openclustermanagement.api.model.discovery.v1alpha1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class DiscoveredClusterSpecBuilder extends DiscoveredClusterSpecFluent implements VisitableBuilder{
  public DiscoveredClusterSpecBuilder() {
    this(new DiscoveredClusterSpec());
  }
  
  public DiscoveredClusterSpecBuilder(DiscoveredClusterSpecFluent fluent) {
    this(fluent, new DiscoveredClusterSpec());
  }
  
  public DiscoveredClusterSpecBuilder(DiscoveredClusterSpecFluent fluent,DiscoveredClusterSpec instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public DiscoveredClusterSpecBuilder(DiscoveredClusterSpec instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  DiscoveredClusterSpecFluent fluent;
  
  public DiscoveredClusterSpec build() {
    DiscoveredClusterSpec buildable = new DiscoveredClusterSpec(fluent.getActivityTimestamp(),fluent.getApiUrl(),fluent.getCloudProvider(),fluent.getConsole(),fluent.getCreationTimestamp(),fluent.buildCredential(),fluent.getDisplayName(),fluent.getIsManagedCluster(),fluent.getName(),fluent.getOpenshiftVersion(),fluent.getStatus(),fluent.getType());
    buildable.setAdditionalProperties(fluent.getAdditionalProperties());
    return buildable;
  }
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy