annotations.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;
import io.fabric8.common.BaseFluent;
import io.fabric8.common.Visitable;
public class ParameterFluent> extends BaseFluent implements Fluent{
String description; String from; String generate; String name; String value; 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 T addToAdditionalProperties( String key, Object value){
if(key != null && value != null) {this.additionalProperties.put(key, 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;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy