~launchpad-results/launchpad-results/trunk

« back to all changes in this revision

Viewing changes to lib/lpresults/hardware/interfaces/unit.py

  • Committer: Marc Tardif
  • Date: 2011-08-29 09:15:02 UTC
  • Revision ID: marc.tardif@canonical.com-20110829091502-sfl5mwynurpuko1j
Added device states for system units.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        :param identifiers: The nique identifiers of the unit.
58
58
        """
59
59
 
60
 
    def get(sequence):
61
 
        """Get a unit by its sequence number.
62
 
 
63
 
        :param id: The identifier of the unit.
64
 
        """
65
 
 
66
60
    def getByIdentifiers(identifiers):
67
61
        """Get a unit by identifiers.
68
62
 
69
63
        :param identifiers: List of identifiers unique to the unit.
70
64
        """
71
65
 
 
66
    def getBySequence(sequence):
 
67
        """Get a unit by its sequence number.
 
68
 
 
69
        :param sequence: The sequence number of the unit.
 
70
        """
 
71
 
72
72
 
73
73
class IHasUnits(Interface):
74
74
    """An entity which has a collection of units."""