Implement Attributes/Outputs BE (part 2)
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / Component.java
index 600451d..c40eef3 100644 (file)
@@ -349,6 +349,10 @@ public abstract class Component implements PropertiesOwner {
         return componentInstancesProperties == null ? emptyMap() : componentInstancesProperties;
     }
 
+    public Map<String, List<ComponentInstanceAttribute>> safeGetComponentInstancesAttributes() {
+        return componentInstancesAttributes == null ? emptyMap() : componentInstancesAttributes;
+    }
+
     public Map<String, List<ComponentInstanceProperty>> safeGetUiComponentInstancesProperties() {
         return componentInstancesProperties == null ? emptyMap() : findUiComponentInstancesProperties();
     }