Permission flags can be added to each parameter in an XML provisioning file, to define whether that setting is read-only, read/write, or read/write-protected. Valid values for the permission flag are:
|
Provisioning parameter examples for ringtone:
perm="!"
<user_ringer idx="1" perm="!">Ringer7</user_ringer>
User is able to change the ringtone, next provisioning run will NOT change the user setting. |
perm="&" or perm="R" or perm=" " (single blank)
<user_ringer idx="1" perm="&">Ringer7</user_ringer>
User is not able to change the ringtone as the value is Read-only. |
perm="$" or perm="RW" or perm="" (empty string)
<user_ringer idx="1" perm="$">Ringer7</user_ringer>
User is able to change the ringtone but after next provisioning run, the ringtone will be changed back to the value in the provisioning file. |