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 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 boolean | isSyncableWhether or not this provider is syncable. |
public static final Parcelable.Creator | CREATOR |