edu.internet2.middleware.grouper.cfg.dbConfig.ConfigSectionMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper Show documentation
Show all versions of grouper Show documentation
Internet2 Groups Management Toolkit
/**
* @author mchyzer
* $Id$
*/
package edu.internet2.middleware.grouper.cfg.dbConfig;
import java.util.ArrayList;
import java.util.List;
/**
* metadata about a section in a config file
*/
public class ConfigSectionMetadata {
/**
*
*/
public ConfigSectionMetadata() {
}
/**
* title of section
*/
private String title;
/**
* title of section
* @return
*/
public String getTitle() {
return this.title;
}
/**
* title of section
* @param title1
*/
public void setTitle(String title1) {
this.title = title1;
}
/**
* comment for section
*/
private String comment;
/**
* items in this section
*/
private List configItemMetadataList = new ArrayList();
/**
* comment for section
* @return the comment
*/
public String getComment() {
return this.comment;
}
/**
* comment for section
* @param comment1 the comment to set
*/
public void setComment(String comment1) {
this.comment = comment1;
}
/**
* items in this section
* @return the configSectionMetadataList
*/
public List getConfigItemMetadataList() {
return this.configItemMetadataList;
}
/**
* items in this section
* @param configSectionMetadataList1 the configSectionMetadataList to set
*/
public void setConfigItemMetadataList(List configSectionMetadataList1) {
this.configItemMetadataList = configSectionMetadataList1;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy