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

io.fabric8.openshift.api.model.ClusterPolicyFluentImpl Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package io.fabric8.openshift.api.model;

import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.String;
import javax.validation.constraints.NotNull;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import javax.validation.Valid;
import io.fabric8.kubernetes.api.model.validators.CheckObjectMeta;
import java.util.List;
import java.util.ArrayList;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import java.lang.Object;
import io.fabric8.kubernetes.api.builder.Nested;
import io.fabric8.kubernetes.api.model.ObjectMetaFluentImpl;
import io.fabric8.kubernetes.api.model.ObjectMetaBuilder;

public class ClusterPolicyFluentImpl> extends BaseFluent implements ClusterPolicyFluent{

    private String apiVersion;
    private String kind;
    private String lastModified;
    private VisitableBuilder metadata;
    private List> roles =  new ArrayList>();

    public ClusterPolicyFluentImpl(){
    }
    public ClusterPolicyFluentImpl(ClusterPolicy instance){
            this.withApiVersion(instance.getApiVersion()); 
            this.withKind(instance.getKind()); 
            this.withLastModified(instance.getLastModified()); 
            this.withMetadata(instance.getMetadata()); 
            this.withRoles(instance.getRoles()); 
    }

    public String getApiVersion(){
            return this.apiVersion;
    }

    public A withApiVersion(String apiVersion){
            this.apiVersion=apiVersion; return (A) this;
    }

    public String getKind(){
            return this.kind;
    }

    public A withKind(String kind){
            this.kind=kind; return (A) this;
    }

    public String getLastModified(){
            return this.lastModified;
    }

    public A withLastModified(String lastModified){
            this.lastModified=lastModified; return (A) this;
    }

    public ObjectMeta getMetadata(){
            return this.metadata!=null?this.metadata.build():null;
    }

    public A withMetadata(ObjectMeta metadata){
            if (metadata!=null){ this.metadata= new ObjectMetaBuilder(metadata); _visitables.add(this.metadata);} return (A) this;
    }

    public ClusterPolicyFluent.MetadataNested withNewMetadata(){
            return new MetadataNestedImpl();
    }

    public ClusterPolicyFluent.MetadataNested withNewMetadataLike(ObjectMeta item){
            return new MetadataNestedImpl(item);
    }

    public ClusterPolicyFluent.MetadataNested editMetadata(){
            return withNewMetadataLike(getMetadata());
    }

    public A addToRoles(NamedClusterRole... items){
            for (NamedClusterRole item : items) {NamedClusterRoleBuilder builder = new NamedClusterRoleBuilder(item);_visitables.add(builder);this.roles.add(builder);} return (A)this;
    }

    public A removeFromRoles(NamedClusterRole... items){
            for (NamedClusterRole item : items) {NamedClusterRoleBuilder builder = new NamedClusterRoleBuilder(item);_visitables.remove(builder);this.roles.remove(builder);} return (A)this;
    }

    public List getRoles(){
            return build(roles);
    }

    public A withRoles(List roles){
            this.roles.clear();
            if (roles != null) {for (NamedClusterRole item : roles){this.addToRoles(item);}} return (A) this;
    }

    public A withRoles(NamedClusterRole... roles){
            this.roles.clear(); if (roles != null) {for (NamedClusterRole item :roles){ this.addToRoles(item);}} return (A) this;
    }

    public ClusterPolicyFluent.RolesNested addNewRole(){
            return new RolesNestedImpl();
    }

    public ClusterPolicyFluent.RolesNested addNewRoleLike(NamedClusterRole item){
            return new RolesNestedImpl(item);
    }

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) return false;
            ClusterPolicyFluentImpl that = (ClusterPolicyFluentImpl) o;
            if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
            if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
            if (lastModified != null ? !lastModified.equals(that.lastModified) :that.lastModified != null) return false;
            if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
            if (roles != null ? !roles.equals(that.roles) :that.roles != null) return false;
            return true;
    }


    public class MetadataNestedImpl extends ObjectMetaFluentImpl> implements ClusterPolicyFluent.MetadataNested,Nested{

            private final ObjectMetaBuilder builder;
    
            MetadataNestedImpl(){
                    this.builder = new ObjectMetaBuilder(this);
            }
            MetadataNestedImpl(ObjectMeta item){
                    this.builder = new ObjectMetaBuilder(this, item);
            }
    
    public N endMetadata(){
            return and();
    }
    public N and(){
            return (N) ClusterPolicyFluentImpl.this.withMetadata(builder.build());
    }

}
    public class RolesNestedImpl extends NamedClusterRoleFluentImpl> implements ClusterPolicyFluent.RolesNested,Nested{

            private final NamedClusterRoleBuilder builder;
    
            RolesNestedImpl(){
                    this.builder = new NamedClusterRoleBuilder(this);
            }
            RolesNestedImpl(NamedClusterRole item){
                    this.builder = new NamedClusterRoleBuilder(this, item);
            }
    
    public N endRole(){
            return and();
    }
    public N and(){
            return (N) ClusterPolicyFluentImpl.this.addToRoles(builder.build());
    }

}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy