use of org.ovirt.engine.core.bll.network.predicate.VnicWithBadMacPredicate in project ovirt-engine by oVirt.
the class ImportVmCommandBase method vNicHasBadMac.
protected boolean vNicHasBadMac(VmNetworkInterface vnic) {
MacPool macPool = getMacPool();
Predicate<VmNetworkInterface> vnicWithBadMacPredicate = new VnicWithBadMacPredicate(macPool);
return vnicWithBadMacPredicate.test(vnic);
}
Aggregations