diff options
| author | Dan Prince <dan.prince@rackspace.com> | 2011-05-16 23:14:51 -0400 |
|---|---|---|
| committer | Dan Prince <dan.prince@rackspace.com> | 2011-05-16 23:14:51 -0400 |
| commit | 6404e2bb02f0736c43ef37292c1143e58903c5db (patch) | |
| tree | 252b359b3a85eb24a14f2c4f8ec0f631c2703131 | |
| parent | 1edf41561d9c5e4df494486e7ab2f193c8206309 (diff) | |
Update comment on RequestExtension class.
| -rw-r--r-- | nova/api/openstack/extensions.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/nova/api/openstack/extensions.py b/nova/api/openstack/extensions.py index 0e729e137..8e77b25fb 100644 --- a/nova/api/openstack/extensions.py +++ b/nova/api/openstack/extensions.py @@ -410,8 +410,11 @@ class ExtensionManager(object): class RequestExtension(object): - """Provide a way to handle custom request data that is sent to core - nova OpenStack API controllers. + """Extend requests and responses of core nova OpenStack API controllers. + + Provide a way to add data to responses and handle custom request data + that is sent to core nova OpenStack API controllers. + """ def __init__(self, method, url_route, handler): self.url_route = url_route |
