Remove invalid error messages
[connman] / doc / network-api.txt
1 Network hierarchy
2 =================
3
4 Service         org.moblin.connman
5 Interface       org.moblin.connman.Network
6 Object path     [variable prefix]/{network0,network1,...}
7
8 Methods         dict GetProperties()
9
10                         Returns properties for the network object. See
11                         the 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.DoesNotExist
24
25 Signals         PropertyChanged(string name, variant value)
26
27                         This signal indicates a changed value of the given
28                         property.
29
30 Properties      string WiFi.Name [readonly]
31
32                         If the network type is WiFi, then this property is
33                         present and contains the network name.
34
35                 array{byte} WiFi.SSID [readonly]
36
37                         If the network type is WiFi, then this property is
38                         present and contains the binary SSID value.
39
40                 string WiFi.Security [readonly, readwrite]
41
42                         If the network type is WiFi, then this property is
43                         present and contains the security method or key
44                         management setting.
45
46                         For scanned networks this value is read only, but in
47                         case the network was manually created it is also
48                         changeable.
49
50                         Possible values are NONE, WPA and WPA2.
51
52                 string WiFi.Passphrase [readwrite]
53
54                         If the network type is WiFi and a passhrase is
55                         requires, then this property is present and contains
56                         the passphrase in clear text.
57
58                         For system using PolicyKit, the access to this value
59                         will be protected by the security policy.