credential_provider_policy_t

Policy used to control provider operations.

Synopsis:

#include <sys/credential/credential_policy.h>
 
typedef enum {
      CREDENTIAL_PROVIDER_POLICY_DISALLOW_ALL = 0   
      CREDENTIAL_PROVIDER_POLICY_ALLOW_ADD = 1 << 0   
      CREDENTIAL_PROVIDER_POLICY_ALLOW_UPDATE = 1 << 1   
      CREDENTIAL_PROVIDER_POLICY_ALLOW_FIND = 1 << 2   
} credential_provider_policy_t;

Since:

BlackBerry 10.3.1

Data:

CREDENTIAL_PROVIDER_POLICY_DISALLOW_ALL
Provider operations are not allowed.
CREDENTIAL_PROVIDER_POLICY_ALLOW_ADD
Provider can be used to add credentials.
CREDENTIAL_PROVIDER_POLICY_ALLOW_UPDATE
Provider can be used to update credentials.
CREDENTIAL_PROVIDER_POLICY_ALLOW_FIND
Provider can be used to find credentials.

Library:

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

Description: