public interface VmBlacklist
Modifier and Type | Method and Description |
---|---|
void |
addVmFilter(Filter<VmRef> filter)
Adds a
Filter to the blacklist. |
boolean |
isBlacklisted(VmRef ref)
Returns whether the given virtual machine should be monitored
by matching it against filters in the blacklist.
|
void |
removeVmFilter(Filter<VmRef> filter)
Removes a
Filter from the blacklist. |
void addVmFilter(Filter<VmRef> filter)
Filter
to the blacklist. Virtual machines that
match the filter will not be monitored.filter
- - a filter whose matching VMs should not be monitoredvoid removeVmFilter(Filter<VmRef> filter)
Filter
from the blacklist. New virtual machines
will no longer be tested against this filter for blacklisting.filter
- - a filter previously in the blacklistboolean isBlacklisted(VmRef ref)
ref
- - a reference to the virtual machine to be tested
against the blacklistCopyright © 2017. All Rights Reserved.