blob: 572e094cc3ca283148d4c5e50b9dcb6e3275acad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
<?xml version="1.0" encoding="UTF-8" ?>
<!--
ModemManager 1.0 Interface Specification
Copyright (C) 2024 Guido Günther <agx@sigxcpu.org>
-->
<node name="/" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
<!--
org.freedesktop.ModemManager1.Modem.CellBroadcast:
@short_description: The ModemManager CellBroadcast service interface.
This interface allows clients to configure the details of CellBroadcast
service information.
This interface will only be available once the modem is ready to be
registered in the cellular network.
-->
<interface name="org.freedesktop.ModemManager1.Modem.CellBroadcast">
<!--
List:
@result: The list of CBM object paths.
Retrieve all cell broadcast messages.
This method should only be used once and subsequent information
retrieved either by listening for the
#org.freedesktop.ModemManager1.Modem.CellBroadcast::Added signal,
or by querying the specific CBM object of interest.
Since: 1.24
-->
<method name="List">
<arg name="result" type="ao" direction="out" />
</method>
<!--
Delete:
@path: The object path of the CBM to delete.
Delete an cell broadcast message
Since: 1.24
-->
<method name="Delete">
<arg name="path" type="o" direction="in" />
</method>
<!--
Added:
@path: Object path of the new CBM.
Emitted when any part of a new cell broadcast message has been
received. Not all parts may have been received and the message may not
be complete.
Check the
'<link linkend="gdbus-property-org-freedesktop-ModemManager1-Cbm.State">State</link>'
property to determine if the message is complete.
Since: 1.24
-->
<signal name="Added">
<arg name="path" type="o" />
</signal>
<!--
Deleted:
@path: Object path of the now deleted CBM.
Emitted when a message has been deleted.
Since: 1.24
-->
<signal name="Deleted">
<arg name="path" type="o" />
</signal>
<!--
CellBroadcasts:
The list of CBM object paths.
Since: 1.24
-->
<property name="CellBroadcasts" type="ao" access="read" />
<!--
SetChannels:
@channels: The list of channels
Set the list of channels to receive Cell Broadcasts for.
Since: 1.24
-->
<method name="SetChannels">
<arg name="channels" type="a(uu)" direction="in" />
</method>
<!--
Channels:
The list of channels that cell broadcast messages are
received for.
Since: 1.24
-->
<property name="Channels" type="a(uu)" access="read" />
</interface>
</node>
|