Add classmethod decorator to class methods of providervlan ext.

Change-Id: If26d75b67c4816de0937f9edaa9f55a5bb2197a2
This commit is contained in:
Yong Sheng Gong 2012-07-29 21:16:59 +08:00
parent cf22f5c429
commit cb69032a26
1 changed files with 5 additions and 0 deletions

View File

@ -44,18 +44,23 @@ class Providernet(object):
will also include provider attributes.
"""
@classmethod
def get_name(cls):
return "Provider Network"
@classmethod
def get_alias(cls):
return "provider"
@classmethod
def get_description(cls):
return "Expose mapping of virtual networks to VLANs and flat networks"
@classmethod
def get_namespace(cls):
return "http://docs.openstack.org/ext/provider/api/v1.0"
@classmethod
def get_updated(cls):
return "2012-07-23T10:00:00-00:00"