use of org.ovirt.engine.api.model.OpenStackNetworks in project ovirt-engine by oVirt.
the class BackendOpenStackNetworksResource method mapCollection.
private OpenStackNetworks mapCollection(Map<Network, Set<Guid>> entities) {
OpenStackNetworks collection = new OpenStackNetworks();
if (entities != null) {
for (Map.Entry<Network, Set<Guid>> entry : entities.entrySet()) {
Network network = entry.getKey();
collection.getOpenStackNetworks().add(addLinks(populate(map(network), network)));
}
}
return collection;
}
use of org.ovirt.engine.api.model.OpenStackNetworks in project ovirt-engine by oVirt.
the class V3OpenStackNetworksInAdapter method adapt.
@Override
public OpenStackNetworks adapt(V3OpenStackNetworks from) {
OpenStackNetworks to = new OpenStackNetworks();
if (from.isSetActions()) {
to.setActions(adaptIn(from.getActions()));
}
if (from.isSetActive()) {
to.setActive(from.getActive());
}
if (from.isSetSize()) {
to.setSize(from.getSize());
}
if (from.isSetTotal()) {
to.setTotal(from.getTotal());
}
to.getOpenStackNetworks().addAll(adaptIn(from.getOpenStackNetworks()));
return to;
}
Aggregations