edu.internet2.middleware.grouper.grouperUi.beans.ui.GuiGshTemplateConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper-ui Show documentation
Show all versions of grouper-ui Show documentation
Internet2 Groups Management User Interface
package edu.internet2.middleware.grouper.grouperUi.beans.ui;
import java.util.Map;
import edu.internet2.middleware.grouper.app.gsh.template.GshTemplateConfig;
import edu.internet2.middleware.grouper.app.gsh.template.GshTemplateInputConfigAndValue;
public class GuiGshTemplateConfig {
private GshTemplateConfig gshTemplateConfig;
private Map gshTemplateInputConfigAndValues;
public Map getGshTemplateInputConfigAndValues() {
return gshTemplateInputConfigAndValues;
}
public void setGshTemplateInputConfigAndValues(
Map gshTemplateInputConfigAndValues) {
this.gshTemplateInputConfigAndValues = gshTemplateInputConfigAndValues;
}
public GshTemplateConfig getGshTemplateConfig() {
return gshTemplateConfig;
}
public void setGshTemplateConfig(GshTemplateConfig gshTemplateConfig) {
this.gshTemplateConfig = gshTemplateConfig;
}
}