diff options
Diffstat (limited to 'introspection/org.freedesktop.ModemManager1.Sim.xml')
-rw-r--r-- | introspection/org.freedesktop.ModemManager1.Sim.xml | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/introspection/org.freedesktop.ModemManager1.Sim.xml b/introspection/org.freedesktop.ModemManager1.Sim.xml new file mode 100644 index 00000000..14f90774 --- /dev/null +++ b/introspection/org.freedesktop.ModemManager1.Sim.xml @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8" ?> + +<!-- + ModemManager 0.6 Interface Specification + + Copyright (C) 2008 Novell, Inc. + Copyright (C) 2008-2011 Red Hat, Inc. + Copyright (C) 2011 The Chromium OS Authors + Copyright (C) 2011 Google, Inc. +--> + +<node name="/" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd"> + + <!-- + org.freedesktop.ModemManager1.Sim: + @short_description: The ModemManager SIM interface. + + The SIM interface handles communication with SIM, USIM, and RUIM (CDMA + SIM) cards. + --> + <interface name="org.freedesktop.ModemManager1.Sim"> + + <!-- + SendPin: + @pin: A string containing the PIN code. + + Send the PIN to unlock the SIM card. + --> + <method name="SendPin"> + <arg name="pin" type="s" direction="in" /> + </method> + + <!-- + SendPuk: + @puk: A string containing the PUK code. + @pin: A string containing the PIN code. + + Send the PUK and a new PIN to unlock the SIM card. + --> + <method name="SendPuk"> + <arg name="puk" type="s" direction="in" /> + <arg name="pin" type="s" direction="in" /> + </method> + + <!-- + EnablePin: + @pin: A string containing the PIN code. + @enabled: %TRUE to enable PIN checking, %FALSE otherwise. + + Enable or disable the PIN checking. + --> + <method name="EnablePin"> + <arg name="pin" type="s" direction="in" /> + <arg name="enabled" type="b" direction="in" /> + </method> + + <!-- + ChangePin: + @old_pin: A string containing the current PIN code. + @new_pin: A string containing the new PIN code. + + Change the PIN code. + --> + <method name="ChangePin"> + <arg name="old_pin" type="s" direction="in" /> + <arg name="new_pin" type="s" direction="in" /> + </method> + + <!-- + SimIdentifier: + + An obfuscated SIM identifier based on the IMSI or the + ICCID. + + This may be available before the PIN has been entered depending + on the device itself. + --> + <property name="SimIdentifier" type="s" access="read" /> + + <!-- + Imsi: + + The IMSI of the SIM card, if any. + --> + <property name="Imsi" type="s" access="read" /> + + <!-- + OperatorId: + + The ID of the network operator that issued the SIM card, + formatted as a 5 or 6-digit MCC/MNC code (e.g. <literal>"310410"</literal>). + --> + <property name="OperatorIdentifier" type="s" access="read" /> + + <!-- + OperatorName: + + The name of the network operator, as given by the SIM card, if known. + --> + <property name="OperatorName" type="s" access="read" /> + + </interface> +</node> |