use of org.ovirt.engine.api.v3.helpers.V3TemplateHelper in project ovirt-engine by oVirt.
the class V3TemplatesServer method list.
@GET
public V3Templates list() {
V3Templates templates = adaptList(getDelegate()::list);
templates.getTemplates().forEach(V3TemplateHelper::addDisksLink);
return templates;
}
Aggregations