argos/dmp-backend/core/src/main/java/eu/eudat/model/descriptionproperties/PropertyDefinition.java

21 lines
448 B
Java
Raw Normal View History

2023-11-07 09:29:27 +01:00
package eu.eudat.model.descriptionproperties;
2023-11-07 09:29:27 +01:00
import java.util.List;
import java.util.Map;
2023-11-07 09:29:27 +01:00
public class PropertyDefinition {
public final static String _fieldSets = "fieldSets";
private Map<String, PropertyDefinitionFieldSet> fieldSets;
2023-11-07 09:29:27 +01:00
public Map<String, PropertyDefinitionFieldSet> getFieldSets() {
return fieldSets;
2023-11-07 11:36:36 +01:00
}
public void setFieldSets(Map<String, PropertyDefinitionFieldSet> fieldSets) {
this.fieldSets = fieldSets;
2023-11-07 11:36:36 +01:00
}
2023-11-07 09:29:27 +01:00
}