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

annotations.io.fabric8.openshift.api.model.ImageStreamStatusFluentImpl Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import java.util.RandomAccess;
import java.util.Map;
import io.fabric8.kubernetes.api.model.KubernetesResource;
import java.util.Map;
import java.util.List;
import java.util.AbstractCollection;
import java.util.AbstractList;
import java.util.HashMap;
import java.io.Serializable;
import java.util.Collection;
import java.util.AbstractMap;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.builder.Visitable;
import java.util.List;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;

public class ImageStreamStatusFluentImpl> extends BaseFluent implements ImageStreamStatusFluent{

     String dockerImageRepository;     List> tags = new ArrayList();     Map additionalProperties = new HashMap();
public ImageStreamStatusFluentImpl(){
    
}
public ImageStreamStatusFluentImpl( ImageStreamStatus instance ){
    this.withDockerImageRepository(instance.getDockerImageRepository()); this.withTags(instance.getTags()); 
}

    public String getDockerImageRepository(){
    return this.dockerImageRepository;
    }
    public T withDockerImageRepository( String dockerImageRepository){
    this.dockerImageRepository=dockerImageRepository; return (T) this;
    }
    public T addToTags( NamedTagEventList ...items){
    for (NamedTagEventList item : items) {NamedTagEventListBuilder builder = new NamedTagEventListBuilder(item);_visitables.add(builder);this.tags.add(builder);} return (T)this;
    }
    public T removeFromTags( NamedTagEventList ...items){
    for (NamedTagEventList item : items) {NamedTagEventListBuilder builder = new NamedTagEventListBuilder(item);_visitables.remove(builder);this.tags.remove(builder);} return (T)this;
    }
    public List getTags(){
    return build(tags);
    }
    public T withTags( List tags){
    this.tags.clear();if (tags != null) {for (NamedTagEventList item : tags){this.addToTags(item);}} return (T) this;
    }
    public T withTags( NamedTagEventList ...tags){
    this.tags.clear(); if (tags != null) {for (NamedTagEventList item :tags){ this.addToTags(item);}} return (T) this;
    }
    public TagsNested addNewTag(){
    return new TagsNestedImpl();
    }
    public TagsNested addNewTagLike( NamedTagEventList item){
    return new TagsNestedImpl(item);
    }
    public T addToAdditionalProperties( String key,  Object value){
    if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
    }
    public T addToAdditionalProperties( Map map){
    if(map != null) { this.additionalProperties.putAll(map);} return (T)this;
    }
    public T removeFromAdditionalProperties( String key){
    if(key != null) {this.additionalProperties.remove(key);} return (T)this;
    }
    public T removeFromAdditionalProperties( Map map){
    if(map != null) { for(Object key : map.keySet()) {this.additionalProperties.remove(key);}} return (T)this;
    }
    public Map getAdditionalProperties(){
    return this.additionalProperties;
    }
    public T withAdditionalProperties( Map additionalProperties){
    this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
    }
    public boolean equals( Object o){
    
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ImageStreamStatusFluentImpl that = (ImageStreamStatusFluentImpl) o;
if (dockerImageRepository != null ? !dockerImageRepository.equals(that.dockerImageRepository) :that.dockerImageRepository != null) return false;
if (tags != null ? !tags.equals(that.tags) :that.tags != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;

    }

    public class TagsNestedImpl extends NamedTagEventListFluentImpl> implements TagsNested{

        private final NamedTagEventListBuilder builder;
    
             TagsNestedImpl (){
        this.builder = new NamedTagEventListBuilder(this);
        }
             TagsNestedImpl ( NamedTagEventList item){
        this.builder = new NamedTagEventListBuilder(this, item);
        }
    
            public N endTag(){
            return and();
        }
            public N and(){
            return (N) ImageStreamStatusFluentImpl.this.addToTags(builder.build());
        }
    
}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy