credential_access_permission_t

Access permission types.

Synopsis:

#include <sys/credential/credential_policy.h>
 
typedef enum {
      CREDENTIAL_ACCESS_PERMISSION_READ =          1 << 0   
      CREDENTIAL_ACCESS_PERMISSION_UPDATE_DATA =   1 << 1   
      CREDENTIAL_ACCESS_PERMISSION_UPDATE_POLICY = 1 << 2   
} credential_access_permission_t;

Since:

BlackBerry 10.3.1

Data:

CREDENTIAL_ACCESS_PERMISSION_READ
The subject can query and read credential.
CREDENTIAL_ACCESS_PERMISSION_UPDATE_DATA
The subject can update (and delete) credentials.
CREDENTIAL_ACCESS_PERMISSION_UPDATE_POLICY
The subject can update credential policies.

Library:

libcredential (For the qcc command, use the -l bps option to link against this library)

Description: