Fields Summary |
---|
public String | authorityThe name provider is published under content:// |
public String | readPermissionOptional permission required for read-only access this content
provider. |
public String | writePermissionOptional permission required for read/write access this content
provider. |
public boolean | grantUriPermissionsIf true, additional permissions to specific Uris in this content
provider can be granted, as per the
{@link android.R.styleable#AndroidManifestProvider_grantUriPermissions
grantUriPermissions} attribute. |
public android.os.PatternMatcher[] | uriPermissionPatternsIf non-null, these are the patterns that are allowed for granting URI
permissions. Any URI that does not match one of these patterns will not
allowed to be granted. If null, all URIs are allowed. The
{@link PackageManager#GET_URI_PERMISSION_PATTERNS
PackageManager.GET_URI_PERMISSION_PATTERNS} flag must be specified for
this field to be filled in. |
public PathPermission[] | pathPermissionsIf non-null, these are path-specific permissions that are allowed for
accessing the provider. Any permissions listed here will allow a
holding client to access the provider, and the provider will check
the URI it provides when making calls against the patterns here. |
public boolean | multiprocessIf true, this content provider allows multiple instances of itself
to run in different process. If false, a single instances is always
run in {@link #processName}. |
public int | initOrderUsed to control initialization order of single-process providers
running in the same process. Higher goes first. |
public static final int | FLAG_SINGLE_USERBit in {@link #flags}: If set, a single instance of the provider will
run for all users on the device. Set from the
{@link android.R.attr#singleUser} attribute. |
public int | flagsOptions that have been set in the provider declaration in the
manifest.
These include: {@link #FLAG_SINGLE_USER}. |
public boolean | isSyncableWhether or not this provider is syncable. |
public static final Parcelable.Creator | CREATOR |