~ci-train-bot/unity8/unity8-ubuntu-zesty-2373

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<node>
  <interface name="com.canonical.unity.AccountsService">

    <annotation name="org.freedesktop.Accounts.VendorExtension" value="true"/>

    <annotation name="org.freedesktop.Accounts.Authentication.ReadAny"
                value="com.ubuntu.AccountsService.GreeterReadAny"/>

    <annotation name="org.freedesktop.Accounts.Authentication.ChangeAny"
                value="com.ubuntu.AccountsService.GreeterChangeAny"/>

    <!-- Should have been named DemoEdges, sorry folks. -mterry -->
    <property name="demo-edges" type="b" access="readwrite">
      <annotation name="org.freedesktop.Accounts.DefaultValue" value="true"/>
    </property>

    <!-- List of tutorial pages that have been completed by the user -->
    <property name="DemoEdgesCompleted" type="as" access="readwrite">
      <annotation name="org.freedesktop.Accounts.DefaultValue" value="[]"/>
    </property>

    <property name="LauncherItems" type="aa{sv}" access="readwrite">
      <annotation name="org.freedesktop.Accounts.DefaultValue" value="[{'defaults': <true>}]"/>
    </property>

  </interface>

  <!-- This interface is for bits of data that the greeter wants to track
       per-user in a persistent way, but that users shouldn't be able to edit
       in an ideal world.

       This interface is identical in permissions to the above one for now,
       but once we stop running the greeter in user-space, we should
       disallow org.freedesktop.Accounts.Authentication.ChangeOwn from the
       Private inteface.  -->
  <interface name="com.canonical.unity.AccountsService.Private">

    <annotation name="org.freedesktop.Accounts.VendorExtension" value="true"/>

    <annotation name="org.freedesktop.Accounts.Authentication.ReadAny"
                value="com.ubuntu.AccountsService.GreeterReadAny"/>

    <annotation name="org.freedesktop.Accounts.Authentication.ChangeAny"
                value="com.ubuntu.AccountsService.GreeterChangeAny"/>

    <property name="FailedLogins" type="u" access="readwrite">
      <annotation name="org.freedesktop.Accounts.DefaultValue" value="0"/>
    </property>

    <property name="FailedFingerprintLogins" type="u" access="readwrite">
      <annotation name="org.freedesktop.Accounts.DefaultValue" value="0"/>
    </property>

  </interface>
</node>