Add skeleton for EnableTechnology/DisableTechnology methods
[platform/upstream/connman.git] / doc / manager-api.txt
1 Manager hierarchy
2 =================
3
4 Service         org.moblin.connman
5 Interface       org.moblin.connman.Manager
6 Object path     /
7
8 Methods         dict GetProperties()
9
10                         Returns all global system properties. See the
11                         properties section for available properties.
12
13                         Possible Errors: [service].Error.InvalidArguments
14
15                 void SetProperty(string name, variant value)
16
17                         Changes the value of the specified property. Only
18                         properties that are listed as read-write are
19                         changeable. On success a PropertyChanged signal
20                         will be emitted.
21
22                         Possible Errors: [service].Error.InvalidArguments
23                                          [service].Error.InvalidProperty
24
25                 object AddProfile(string name)
26
27                         Add a new profile with the specified name.
28
29                         It is possible to create two profiles with the same
30                         name. The identification is done via the object path
31                         and not the name of the profile.
32
33                         Possible Errors: [service].Error.InvalidArguments
34
35                 void RemoveProfile(object path)
36
37                         Remove profile with specified object path.
38
39                         It is not possible to remove the current active
40                         profile. To remove the active profile a different
41                         one must be selected via ActiveProfile property
42                         first.
43
44                         At minimum one profile must be available all the time.
45
46                         Possible Errors: [service].Error.InvalidArguments
47
48                 void RequestScan(string type)
49
50                         Request to trigger a scan for the specified
51                         technology. The empty string "" triggers scanning
52                         on all technologies.
53
54                         Possible Errors: [service].Error.InvalidArguments
55
56                 void EnableTechnology(string type)
57
58                         Enable specified type of technologies.
59
60                         Possible Errors: [service].Error.InvalidArguments
61
62                 void DisableTechnology(string type)
63
64                         Disable specified type of technologies.
65
66                         Possible Errors: [service].Error.InvalidArguments
67
68                 object ConnectService(dict network)
69
70                         Connect to a network specified by the given
71                         properties.
72
73                         For connecting to a hidden WiFi network for example
74                         it is required that Type = "wifi" and the SSID
75                         properties are provided.
76
77                         When successful this method will return object
78                         path of the service object.
79
80                         This method can also be used to connect to an
81                         already existing service. It works exactly the
82                         same as executing the Connect method from the
83                         service interface.
84
85                         Possible Errors: [service].Error.InvalidArguments
86
87                 void RegisterAgent(object path)
88
89                         Register new agent for handling user requests.
90
91                         Possible Errors: [service].Error.InvalidArguments
92
93                 void UnregisterAgent(object path)
94
95                         Unregister an existing agent.
96
97                         Possible Errors: [service].Error.InvalidArguments
98
99 Signals         PropertyChanged(string name, variant value)
100
101                         This signal indicates a changed value of the given
102                         property.
103
104                 StateChanged(string state)
105
106                         This signal is similar to the PropertyChanged signal
107                         for the State property.
108
109                         It exists for application state only care about the
110                         current state and so can avoid to be woken up when
111                         other details changes.
112
113 Properties      string State [readonly]
114
115                         The global connection state of a system. Possible
116                         values are "online" if at least one connection exists
117                         and "offline" if no device is connected.
118
119                         In certain situations the state might change to
120                         the value "connected". This can only be seen if
121                         previously no connection was present.
122
123                 array{string} Technologies [readonly]
124
125                         The list of available technologies. The strings
126                         are the same as the ones from the service types.
127
128                 array{string} EnabledTechnologies [readonly]
129
130                         The list of enabled technologies. The strings
131                         are the same as the ones from the service types.
132
133                 boolean OfflineMode [readwrite]
134
135                         The offline mode indicates the global setting for
136                         switching all radios on or off. Changing offline mode
137                         to true results in powering down all devices. When
138                         leaving offline mode the individual policy of each
139                         device decides to switch the radio back on or not.
140
141                         During offline mode, it is still possible to switch
142                         certain technologies manually back on. For example
143                         the limited usage of WiFi or Bluetooth devices might
144                         be allowed in some situations.
145
146                 object ActiveProfile [readwrite]
147
148                         Object path of the current active profile.
149
150                 array{object} Profiles [readonly]
151
152                         List of profile object paths.
153
154                 array{object} Devices [readonly]
155
156                         List of device object paths.
157
158                 array{object} Services [readonly]
159
160                         List of service object paths. The list is sorted
161                         internally to have the service with the default
162                         route always first and then the favorite services
163                         followed by scan results.
164
165                         This list represents the available services for the
166                         current selected profile. If the profile gets changed
167                         then this list will be updated.
168
169                         The same list is available via the profile object
170                         itself. It is just provided here for convenience of
171                         applications only dealing with the current active
172                         profile.
173
174                 array{object} Connections [readonly]
175
176                         List of active connection object paths.