use of org.ovirt.engine.api.v3.types.V3Labels in project ovirt-engine by oVirt.
the class V3NetworkLabelsOutAdapter method adapt.
@Override
public V3Labels adapt(NetworkLabels from) {
V3Labels to = new V3Labels();
if (from.isSetActions()) {
to.setActions(adaptOut(from.getActions()));
}
if (from.isSetActive()) {
to.setActive(from.getActive());
}
if (from.isSetSize()) {
to.setSize(from.getSize());
}
if (from.isSetTotal()) {
to.setTotal(from.getTotal());
}
to.getLabels().addAll(adaptOut(from.getNetworkLabels()));
return to;
}
use of org.ovirt.engine.api.v3.types.V3Labels in project ovirt-engine by oVirt.
the class V3HostNicOutAdapter method adapt.
@Override
public V3HostNIC adapt(HostNic from) {
V3HostNIC to = new V3HostNIC();
if (from.isSetLinks()) {
to.getLinks().addAll(adaptOut(from.getLinks()));
// In version 3 of the API the name of the network labels sub-collection was just "labels", but in version
// 4 of the API it has been renamed to "networklabels", so we need to adjust the links accordingly:
to.getLinks().stream().filter(this::isNetworksLabelsLink).forEach(this::fixNetworkLabelsLink);
}
if (from.isSetActions()) {
to.setActions(adaptOut(from.getActions()));
}
if (from.isSetBaseInterface()) {
to.setBaseInterface(from.getBaseInterface());
}
if (from.isSetBonding()) {
to.setBonding(adaptOut(from.getBonding()));
}
if (from.isSetBootProtocol()) {
to.setBootProtocol(from.getBootProtocol().value());
}
if (from.isSetBridged()) {
to.setBridged(from.isBridged());
}
if (from.isSetCheckConnectivity()) {
to.setCheckConnectivity(from.isCheckConnectivity());
}
if (from.isSetComment()) {
to.setComment(from.getComment());
}
if (from.isSetCustomConfiguration()) {
to.setCustomConfiguration(from.isCustomConfiguration());
}
if (from.isSetDescription()) {
to.setDescription(from.getDescription());
}
if (from.isSetHost()) {
to.setHost(adaptOut(from.getHost()));
}
if (from.isSetId()) {
to.setId(from.getId());
}
if (from.isSetHref()) {
to.setHref(from.getHref());
}
if (from.isSetIp()) {
to.setIp(adaptOut(from.getIp()));
}
if (from.isSetNetworkLabels()) {
to.setLabels(new V3Labels());
to.getLabels().getLabels().addAll(adaptOut(from.getNetworkLabels().getNetworkLabels()));
}
if (from.isSetMac()) {
to.setMac(adaptOut(from.getMac()));
}
if (from.isSetMtu()) {
to.setMtu(from.getMtu());
}
if (from.isSetName()) {
to.setName(from.getName());
}
if (from.isSetNetwork()) {
to.setNetwork(adaptOut(from.getNetwork()));
}
if (from.isSetOverrideConfiguration()) {
to.setOverrideConfiguration(from.isOverrideConfiguration());
}
if (from.isSetPhysicalFunction()) {
to.setPhysicalFunction(adaptOut(from.getPhysicalFunction()));
}
if (from.isSetProperties()) {
to.setProperties(new V3Properties());
to.getProperties().getProperties().addAll(adaptOut(from.getProperties().getProperties()));
}
if (from.isSetQos()) {
to.setQos(adaptOut(from.getQos()));
}
if (from.isSetSpeed()) {
to.setSpeed(from.getSpeed());
}
if (from.isSetStatistics()) {
to.setStatistics(new V3Statistics());
to.getStatistics().getStatistics().addAll(adaptOut(from.getStatistics().getStatistics()));
}
if (from.isSetStatus()) {
V3Status status = new V3Status();
status.setState(from.getStatus().value());
to.setStatus(status);
}
if (from.isSetVirtualFunctionsConfiguration()) {
to.setVirtualFunctionsConfiguration(adaptOut(from.getVirtualFunctionsConfiguration()));
}
if (from.isSetVlan()) {
to.setVlan(adaptOut(from.getVlan()));
}
return to;
}
use of org.ovirt.engine.api.v3.types.V3Labels in project ovirt-engine by oVirt.
the class V3NetworkOutAdapter method adapt.
@Override
public V3Network adapt(Network from) {
V3Network to = new V3Network();
if (from.isSetLinks()) {
to.getLinks().addAll(adaptOut(from.getLinks()));
// In version 3 of the API the name of the network labels sub-collection was just "labels", but in version
// 4 of the API it has been renamed to "networklabels", so we need to adjust the links accordingly:
to.getLinks().stream().filter(this::isNetworksLabelsLink).forEach(this::fixNetworkLabelsLink);
}
if (from.isSetActions()) {
to.setActions(adaptOut(from.getActions()));
}
if (from.isSetCluster()) {
to.setCluster(adaptOut(from.getCluster()));
}
if (from.isSetComment()) {
to.setComment(from.getComment());
}
if (from.isSetDataCenter()) {
to.setDataCenter(adaptOut(from.getDataCenter()));
}
if (from.isSetDescription()) {
to.setDescription(from.getDescription());
}
if (from.isSetDisplay()) {
to.setDisplay(from.isDisplay());
}
if (from.isSetId()) {
to.setId(from.getId());
}
if (from.isSetHref()) {
to.setHref(from.getHref());
}
if (from.isSetIp()) {
to.setIp(adaptOut(from.getIp()));
}
if (from.isSetNetworkLabels()) {
to.setLabels(new V3Labels());
to.getLabels().getLabels().addAll(adaptOut(from.getNetworkLabels().getNetworkLabels()));
}
if (from.isSetMtu()) {
to.setMtu(from.getMtu());
}
if (from.isSetName()) {
to.setName(from.getName());
}
if (from.isSetProfileRequired()) {
to.setProfileRequired(from.isProfileRequired());
}
if (from.isSetQos()) {
to.setQos(adaptOut(from.getQos()));
}
if (from.isSetRequired()) {
to.setRequired(from.isRequired());
}
if (from.isSetStatus()) {
V3Status status = new V3Status();
status.setState(from.getStatus().value());
to.setStatus(status);
}
if (from.isSetStp()) {
to.setStp(from.isStp());
}
if (from.isSetUsages()) {
V3Usages toUsages = to.getUsages();
if (toUsages == null) {
toUsages = new V3Usages();
to.setUsages(toUsages);
}
List<String> toList = toUsages.getUsages();
from.getUsages().getUsages().forEach(usage -> toList.add(usage.value()));
}
if (from.isSetVlan()) {
to.setVlan(adaptOut(from.getVlan()));
}
return to;
}
Aggregations