summaryrefslogtreecommitdiff
path: root/ironic/drivers/hardware_type.py
diff options
context:
space:
mode:
Diffstat (limited to 'ironic/drivers/hardware_type.py')
-rw-r--r--ironic/drivers/hardware_type.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/ironic/drivers/hardware_type.py b/ironic/drivers/hardware_type.py
index 0ec71210e..df5f43782 100644
--- a/ironic/drivers/hardware_type.py
+++ b/ironic/drivers/hardware_type.py
@@ -42,19 +42,23 @@ class AbstractHardwareType(object, metaclass=abc.ABCMeta):
# Required hardware interfaces
- @abc.abstractproperty
+ @property
+ @abc.abstractmethod
def supported_boot_interfaces(self):
"""List of supported boot interfaces."""
- @abc.abstractproperty
+ @property
+ @abc.abstractmethod
def supported_deploy_interfaces(self):
"""List of supported deploy interfaces."""
- @abc.abstractproperty
+ @property
+ @abc.abstractmethod
def supported_management_interfaces(self):
"""List of supported management interfaces."""
- @abc.abstractproperty
+ @property
+ @abc.abstractmethod
def supported_power_interfaces(self):
"""List of supported power interfaces."""