Search in sources :

Example 1 with VnicPassThrough

use of org.ovirt.engine.api.model.VnicPassThrough in project ovirt-engine by oVirt.

the class VnicProfileMapper method map.

@Mapping(from = org.ovirt.engine.core.common.businessentities.network.VnicProfile.class, to = VnicProfile.class)
public static VnicProfile map(org.ovirt.engine.core.common.businessentities.network.VnicProfile entity, VnicProfile template) {
    VnicProfile model = template != null ? template : new VnicProfile();
    if (entity.getId() != null) {
        model.setId(entity.getId().toString());
    }
    if (entity.getName() != null) {
        model.setName(entity.getName());
    }
    if (entity.getDescription() != null) {
        model.setDescription(entity.getDescription());
    }
    if (entity.getNetworkId() != null) {
        model.setNetwork(new Network());
        model.getNetwork().setId(entity.getNetworkId().toString());
    }
    model.setPortMirroring(entity.isPortMirroring());
    if (entity.getCustomProperties() != null && !entity.getCustomProperties().isEmpty()) {
        CustomProperties hooks = new CustomProperties();
        hooks.getCustomProperties().addAll(CustomPropertiesParser.parse(DevicePropertiesUtils.getInstance().convertProperties(entity.getCustomProperties()), false));
        model.setCustomProperties(hooks);
    }
    if (entity.getNetworkQosId() != null) {
        model.setQos(new Qos());
        model.getQos().setId(entity.getNetworkQosId().toString());
    }
    final VnicPassThrough vnicPassThrough = new VnicPassThrough();
    vnicPassThrough.setMode(map(entity.isPassthrough()));
    model.setPassThrough(vnicPassThrough);
    if (entity.getNetworkFilterId() != null) {
        model.setNetworkFilter(new NetworkFilter());
        model.getNetworkFilter().setId(entity.getNetworkFilterId().toString());
    }
    if (entity.isPassthrough()) {
        model.setMigratable(entity.isMigratable());
    }
    return model;
}
Also used : VnicPassThrough(org.ovirt.engine.api.model.VnicPassThrough) Qos(org.ovirt.engine.api.model.Qos) Network(org.ovirt.engine.api.model.Network) NetworkFilter(org.ovirt.engine.api.model.NetworkFilter) VnicProfile(org.ovirt.engine.api.model.VnicProfile) CustomProperties(org.ovirt.engine.api.model.CustomProperties)

Aggregations

CustomProperties (org.ovirt.engine.api.model.CustomProperties)1 Network (org.ovirt.engine.api.model.Network)1 NetworkFilter (org.ovirt.engine.api.model.NetworkFilter)1 Qos (org.ovirt.engine.api.model.Qos)1 VnicPassThrough (org.ovirt.engine.api.model.VnicPassThrough)1 VnicProfile (org.ovirt.engine.api.model.VnicProfile)1