io.ap4k.option.config.GeneratorConfig Maven / Gradle / Ivy
The newest version!
package io.ap4k.option.config;
import io.ap4k.project.Project;
import io.ap4k.kubernetes.config.ConfigKey;
import io.ap4k.kubernetes.config.Configuration;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import io.sundr.builder.annotations.Buildable;
@Buildable(builderPackage = "io.ap4k.deps.kubernetes.api.builder") public class GeneratorConfig extends Configuration{
private String inputPath = "";
private String outputPath = "";
public GeneratorConfig(){
}
public GeneratorConfig(Project project,Map attributes,String inputPath,String outputPath){
super(project, attributes);
this.inputPath = inputPath != null ? inputPath : "";
this.outputPath = outputPath != null ? outputPath : "";
}
public String getInputPath(){
return this.inputPath;
}
public String getOutputPath(){
return this.outputPath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy