All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.internet2.middleware.grouper.grouperUi.beans.ui.GrouperReportConfigInstance Maven / Gradle / Ivy

There is a newer version: 5.13.5
Show newest version
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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy