1
2
3
4
5
6
7
8
9
10
11
12
13
14 import zope.interface
15
17 """
18 Interface implemented for objects that manage devices, like DeviceOrganizers
19 or monitor configurations.
20 """
21
23 """
24 Return a list of potential targets to which a device can be moved.
25 Should remove self from of list.
26 """
27
29 """
30 Return the moveTarget based on its name.
31 """
32
34 """
35 Move a list of devices from this DeviceManager to another.
36 """
37
39 """
40 Remove devices from this DeviceManager.
41 """
42
43
44 -class IReport(zope.interface.Interface):
45
47 """Dmd is the DataRoot, args are the REQUEST args, this command
48 returns a sequence"""
49