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

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

package io.fabric8.openshift.api.model;

import java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Fluent;

public class ImageRepositoryStatusFluent> implements Fluent{

    private String dockerImageRepository ;
    private Map tags  = new HashMap();
    private Map additionalProperties  = new HashMap();

    public String getDockerImageRepository(){
    return this.dockerImageRepository;
    }
    public T withDockerImageRepository(String dockerImageRepository){
    this.dockerImageRepository=dockerImageRepository; return (T) this;
    }
    public Map getTags(){
    return this.tags;
    }
    public T withTags(Map tags){
    this.tags.clear();if (tags != null) {this.tags.putAll(tags);} 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 T addToTags(String key, TagEventList value){
    if(key != null && value != null) {this.tags.put(key, value);} return (T)this;
    }
    public T addToAdditionalProperties(String key, Object value){
    if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
    }



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy