~ubuntu-branches/ubuntu/vivid/ironic/vivid-updates

« back to all changes in this revision

Viewing changes to ironic/objects/base.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-01-05 12:21:37 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20150105122137-171bqrdpcxqipunk
Tags: 2015.1~b1-0ubuntu1
* New upstream beta release:
  - d/control: Align version requirements with upstream release.
* d/watch: Update uversionmangle to deal with kilo beta versioning
  changes.
* d/control: Bumped Standards-Version to 3.9.6, no changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
 
211
211
    @classmethod
212
212
    def obj_name(cls):
213
 
        """Return a canonical name for this object which will be used over
214
 
        the wire for remote hydration.
 
213
        """Get canonical object name.
 
214
 
 
215
        This object name will be used over the wire for remote hydration.
215
216
        """
216
217
        return cls.__name__
217
218
 
545
546
 
546
547
    def _process_iterable(self, context, action_fn, values):
547
548
        """Process an iterable, taking an action on each value.
 
549
 
548
550
        :param:context: Request context
549
551
        :param:action_fn: Action to take on each item in values
550
552
        :param:values: Iterable container of things to take action on