use of org.apache.airavata.workflow.model.component.system.SystemComponentReference in project airavata by apache.
the class AmazonComponentRegistry method getComponentReferenceList.
/**
* @see org.apache.airavata.workflow.model.component.registry.ComponentRegistry#getComponentReferenceList()
*/
@Override
public List<ComponentReference> getComponentReferenceList() {
List<ComponentReference> tree = new ArrayList<ComponentReference>();
for (String name : this.componentMap.keySet()) {
Component component = this.componentMap.get(name);
SystemComponentReference componentReference = new SystemComponentReference(name, component);
tree.add(componentReference);
}
return tree;
}
Aggregations