com.reprezen.genflow.api.template.config.StaticResourceConfig Maven / Gradle / Ivy
/*******************************************************************************
* Copyright © 2013, 2016 Modelsolv, Inc.
* All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains the property
* of ModelSolv, Inc. See the file license.html in the root directory of
* this project for further information.
*******************************************************************************/
package com.reprezen.genflow.api.template.config;
import java.io.File;
public class StaticResourceConfig {
private String resourcePath;
private File output;
public String getResourcePath() {
return resourcePath;
}
public void setResourcePath(String resourcePath) {
this.resourcePath = resourcePath;
}
public File getOutput() {
return output;
}
public void setOutput(File output) {
this.output = output;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy