Move Widget attribute data to the mappings JSON
[aai/babel.git] / src / main / java / org / onap / aai / babel / xml / generator / data / GroupConfiguration.java
index bbc7164..9d6409b 100644 (file)
@@ -30,6 +30,11 @@ public class GroupConfiguration {
      */
     private List<String> instanceGroupTypes;
 
+    /**
+     * Set of Widget Types.
+     */
+    private List<WidgetType> widgetTypes;
+
     /**
      * Mapping from TOSCA type to Widget directly.
      */
@@ -39,7 +44,12 @@ public class GroupConfiguration {
         return instanceGroupTypes;
     }
 
+    public List<WidgetType> getWidgetTypes() {
+        return widgetTypes;
+    }
+
     public List<WidgetMapping> getWidgetMappings() {
         return widgetMappings;
     }
+
 }