summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAnkit Navik <ankit.p.navik@intel.com>2017-10-04 09:12:27 +0530
committerDenis Kenzior <denkenz@gmail.com>2017-10-05 11:37:18 -0500
commit42e93fbbc18037f4c18ba044efdbe5daefe68d91 (patch)
tree97edf09eed2b41d50b350d2a540b662f585b1034 /doc
parentc33c567ef635c9b3735f2082a9059545d4c882aa (diff)
downloadofono-42e93fbbc18037f4c18ba044efdbe5daefe68d91.tar.gz
doc: add ims atom documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/ims-api.txt59
1 files changed, 59 insertions, 0 deletions
diff --git a/doc/ims-api.txt b/doc/ims-api.txt
new file mode 100644
index 00000000..c4f5ffad
--- /dev/null
+++ b/doc/ims-api.txt
@@ -0,0 +1,59 @@
+IpMultimediaSystem Hierarchy
+============================
+
+Service org.ofono
+Interface org.ofono.IpMultimediaSystem
+Object path [variable prefix]/{modem0,modem1,...}
+
+Methods dict GetProperties()
+
+ Returns all IpMultimediaSystem configuration properties.
+
+ void SetProperty(string property, variant value)
+
+ Changes the value of the specified property. Only
+ properties that are listed as readwrite are
+ changeable. On success a PropertyChanged signal
+ will be emitted.
+
+ Possible Errors: [service].Error.InProgress
+ [service].Error.InvalidArguments
+ [service].Error.Failed
+
+ void Register()
+
+ Attempts to register to IMS. A successful method return
+ indicates that the registration process could be
+ initiated successfully. The actual registration state
+ will be reflected by the 'Registered' property.
+
+ Possible Errors: [service].Error.InProgress
+ [service].Error.NotImplemented
+
+ void Unregister()
+
+ Attempts to unregister from IMS. A successful method
+ return indicates that the unregistration process could
+ be initiated successfully. The actual unregistration
+ state will be reflected by the 'Registered' property.
+
+ Possible Errors: [service].Error.InProgress
+ [service].Error.NotImplemented
+
+Signals PropertyChanged(string property, variant value)
+
+ This signal indicates a changed value of the given
+ property.
+
+Properties boolean Registered [readonly]
+
+ Contains the current IMS registration state.
+
+ boolean VoiceCapable [readonly, optional]
+
+ Boolean representing whether voice call transfer over
+ RTP (IMS) is available.
+
+ boolean SmsCapable [readonly, optional]
+
+ Boolean representing whether SMS-over-IMS is available.