io.fabric8.openshift.api.model.template.ParameterFluent Maven / Gradle / Ivy
package io.fabric8.openshift.api.model.template;
import java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Fluent;
public class ParameterFluent> implements Fluent{
private String Description ;
private String From ;
private String Generate ;
private String Name ;
private String Value ;
private Map additionalProperties = new HashMap();
public String getDescription(){
return this.Description;
}
public T withDescription(String Description){
this.Description=Description; return (T) this;
}
public String getFrom(){
return this.From;
}
public T withFrom(String From){
this.From=From; return (T) this;
}
public String getGenerate(){
return this.Generate;
}
public T withGenerate(String Generate){
this.Generate=Generate; return (T) this;
}
public String getName(){
return this.Name;
}
public T withName(String Name){
this.Name=Name; return (T) this;
}
public String getValue(){
return this.Value;
}
public T withValue(String Value){
this.Value=Value; 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 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