dundee: Add documentation
authorDaniel Wagner <daniel.wagner@bmw-carit.de>
Mon, 19 Dec 2011 08:25:49 +0000 (09:25 +0100)
committerDaniel Wagner <daniel.wagner@bmw-carit.de>
Tue, 22 May 2012 16:44:46 +0000 (18:44 +0200)
doc/dundee-api.txt [new file with mode: 0644]

diff --git a/doc/dundee-api.txt b/doc/dundee-api.txt
new file mode 100644 (file)
index 0000000..9f4cfe6
--- /dev/null
@@ -0,0 +1,76 @@
+
+Manager hierarchy
+=================
+
+Service                org.ofono.dundee
+Interface      org.ofono.dundee.Manager
+Object path    /
+
+Methods                array{object,dict} GetDevices()
+
+                       Get an array of device objects and properties
+                       that represent the currently attached devices.
+
+                       This method call should only be used once when an
+                       application starts up. Further device additions
+                       and removal shall be monitored via DeviceAdded and
+                       DeviceRemoved signals.
+
+Signals                DeviceAdded(object path, dict properties)
+
+                       Signal that is sent when a new device is added.  It
+                       contains the object path of new device and its
+                       properties.
+
+               DeviceRemoved(object path)
+
+                       Signal that is sent when a device has been removed.
+                       The object path is no longer accessible after this
+                       signal and only emitted for reference.
+
+
+Device hierarchy
+================
+
+Service                org.ofono.dundee
+Interface      org.ofono.dundee.Device
+Object path    /{device0,device1,...}
+
+Methods                dict GetProperties()
+
+                       Returns properties for the device object. See
+                       the properties section for available properties.
+
+Signals                PropertyChanged(string name, variant value)
+
+                       This signal indicates a changed value of the given
+                       property.
+
+Properties     string Name [readonly]
+
+                       Friendly name of the device.
+
+               boolean Active [readwrite]
+
+                       Holds whether the device is connected. A
+                       connection will be established when this value
+                       is set to true. A existing connection will be
+                       teared down when set to false.
+
+               dict Settings [readonly]
+
+                       Holds all the IP network settings.
+
+                       string Interface [readonly, optional]
+
+                               Holds the interface of the network interface
+                               used by this connection (e.g. "ppp0" "usb0")
+
+                       string Address [readonly, optional]
+
+                               Holds the IP address for this connection.
+
+                       array{string} DomainNameServers [readonly, optional]
+
+                               Holds the list of domain name servers for this
+                               connection.