io.sundr.codegen.generator.CodeGeneratorFluent Maven / Gradle / Ivy
/*
* Copyright 2015 The original authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.sundr.codegen.generator;
import io.sundr.builder.Fluent;
import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.VelocityEngine;
import java.io.Writer;
import java.net.URL;
import java.util.LinkedHashSet;
import java.util.Set;
public class CodeGeneratorFluent> implements Fluent {
private VelocityEngine engine;
public T withEngine(VelocityEngine engine) {
this.engine = engine;
return (T) this;
}
public VelocityEngine getEngine() {
return this.engine;
}
private VelocityContext context;
public T withContext(VelocityContext context) {
this.context = context;
return (T) this;
}
public VelocityContext getContext() {
return this.context;
}
private Writer writer;
public T withWriter(Writer writer) {
this.writer = writer;
return (T) this;
}
public Writer getWriter() {
return this.writer;
}
private M model;
public T withModel(M model) {
this.model = model;
return (T) this;
}
public M getModel() {
return this.model;
}
private String templateResource;
public T withTemplateResource(String templateResource) {
this.templateResource = templateResource;
return (T) this;
}
public String getTemplateResource() {
return this.templateResource;
}
private URL templateUrl;
public T withTemplateUrl(URL templateUrl) {
this.templateUrl = templateUrl;
return (T) this;
}
public URL getTemplateUrl() {
return this.templateUrl;
}
private Set> directives = new LinkedHashSet();
public T withDirectives(Set directives) {
this.directives = directives;
return (T) this;
}
public T addToDirectives(Class item) {
this.directives.add(item);
return (T) this;
}
public Set> getDirectives() {
return this.directives;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy