4 Service org.moblin.connman
5 Interface org.moblin.connman.Manager
8 Methods dict GetProperties()
10 Returns all global system properties. See the
11 properties section for available properties.
13 Possible Errors: [service].Error.InvalidArguments
15 void SetProperty(string name, variant value)
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
22 Possible Errors: [service].Error.InvalidArguments
23 [service].Error.InvalidProperty
27 Return global connection state of a system. The
28 same value is return via the State property.
30 Possible Errors: [service].Error.InvalidArguments
32 object CreateProfile(string name)
34 Create and add new profile with the specified
37 Possible Errors: [service].Error.InvalidArguments
39 void RemoveProfile(object path)
41 Remove profile with specified object path.
43 It is not possible to remove the current active
44 profile. To remove the active profile a different
45 one must be selected via ActiveProfile property
48 At minimum one profile must be available all the time.
50 Possible Errors: [service].Error.InvalidArguments
52 void RequestScan(string type)
54 Request to trigger a scan for the specified
55 technology. The empty string "" triggers scanning
58 Possible Errors: [service].Error.InvalidArguments
60 void EnableTechnology(string type)
62 Enable specified type of technologies.
64 Possible Errors: [service].Error.InvalidArguments
66 void DisableTechnology(string type)
68 Disable specified type of technologies.
70 Possible Errors: [service].Error.InvalidArguments
72 object ConnectService(dict network)
74 Connect to a network specified by the given
77 For connecting to a hidden WiFi network for example
78 it is required that Type = "wifi" and the SSID
79 properties are provided.
81 When successful this method will return object
82 path of the service object.
84 This method can also be used to connect to an
85 already existing service. It works exactly the
86 same as executing the Connect method from the
89 This method call will only return in case of an
90 error or when the service is fully connected. So
91 setting a longer D-Bus timeout might be a really
94 Possible Errors: [service].Error.InvalidArguments
96 void RegisterAgent(object path)
98 Register new agent for handling user requests.
100 Possible Errors: [service].Error.InvalidArguments
102 void UnregisterAgent(object path)
104 Unregister an existing agent.
106 Possible Errors: [service].Error.InvalidArguments
108 Signals PropertyChanged(string name, variant value)
110 This signal indicates a changed value of the given
113 StateChanged(string state)
115 This signal is similar to the PropertyChanged signal
116 for the State property.
118 It exists for application state only care about the
119 current state and so can avoid to be woken up when
120 other details changes.
122 Properties string State [readonly]
124 The global connection state of a system. Possible
125 values are "online" if at least one connection exists
126 and "offline" if no device is connected.
128 In certain situations the state might change to
129 the value "connected". This can only be seen if
130 previously no connection was present.
132 array{string} AvailableTechnologies [readonly]
134 The list of available technologies. The strings
135 are the same as the ones from the service types.
137 array{string} EnabledTechnologies [readonly]
139 The list of enabled technologies. The strings
140 are the same as the ones from the service types.
142 array{string} ConnectedTechnologies [readonly]
144 The list of connected technologies. The strings
145 are the same as the ones from the service type.
147 string DefaultTechnology [readonly]
149 The current connected technology which holds the
152 boolean OfflineMode [readwrite]
154 The offline mode indicates the global setting for
155 switching all radios on or off. Changing offline mode
156 to true results in powering down all devices. When
157 leaving offline mode the individual policy of each
158 device decides to switch the radio back on or not.
160 During offline mode, it is still possible to switch
161 certain technologies manually back on. For example
162 the limited usage of WiFi or Bluetooth devices might
163 be allowed in some situations.
165 object ActiveProfile [readwrite]
167 Object path of the current active profile.
169 array{object} Profiles [readonly]
171 List of profile object paths.
173 array{object} Devices [readonly]
175 List of device object paths.
177 array{object} Services [readonly]
179 List of service object paths. The list is sorted
180 internally to have the service with the default
181 route always first and then the favorite services
182 followed by scan results.
184 This list represents the available services for the
185 current selected profile. If the profile gets changed
186 then this list will be updated.
188 The same list is available via the profile object
189 itself. It is just provided here for convenience of
190 applications only dealing with the current active
193 array{object} Connections [readonly]
195 List of active connection object paths.