edu.internet2.middleware.grouper.grouperUi.beans.ui.GrouperReportConfigInstance 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.ArrayList;
import java.util.List;
import edu.internet2.middleware.grouper.app.reports.GrouperReportConfigurationBean;
public class GrouperReportConfigInstance {
private GrouperReportConfigurationBean reportConfigBean;
private List guiReportInstances = new ArrayList();
public GrouperReportConfigurationBean getReportConfigBean() {
return reportConfigBean;
}
public void setReportConfigBean(GrouperReportConfigurationBean reportConfigBean) {
this.reportConfigBean = reportConfigBean;
}
public List getGuiReportInstances() {
return guiReportInstances;
}
public void setGuiReportInstances(List guiReportInstances) {
this.guiReportInstances = guiReportInstances;
}
}