/**@class android.content.RestrictionsManager @extends java.lang.Object Provides a mechanism for apps to query restrictions imposed by an entity that manages the user. Apps can also send permission requests to a local or remote device administrator to override default app-specific restrictions or any other operation that needs explicit authorization from the administrator. <p> Apps can expose a set of restrictions via an XML file specified in the manifest. <p> If the user has an active Restrictions Provider, dynamic requests can be made in addition to the statically imposed restrictions. Dynamic requests are app-specific and can be expressed via a predefined set of request types. <p> The RestrictionsManager forwards the dynamic requests to the active Restrictions Provider. The Restrictions Provider can respond back to requests by calling {@link #notifyPermissionResponse(String, PersistableBundle)}, when a response is received from the administrator of the device or user. The response is relayed back to the application via a protected broadcast, {@link #ACTION_PERMISSION_RESPONSE_RECEIVED}. <p> Static restrictions are specified by an XML file referenced by a meta-data attribute in the manifest. This enables applications as well as any web administration consoles to be able to read the list of available restrictions from the apk. <p> The syntax of the XML format is as follows: <pre> <?xml version="1.0" encoding="utf-8"?> <restrictions xmlns:android="http://schemas.android.com/apk/res/android" > <restriction android:key="string" android:title="string resource" android:restrictionType=["bool" | "string" | "integer" | "choice" | "multi-select" | "hidden" | "bundle" | "bundle_array"] android:description="string resource" android:entries="string-array resource" android:entryValues="string-array resource" android:defaultValue="reference" > <restriction ... /> ... </restriction> <restriction ... /> ... </restrictions> </pre> <p> The attributes for each restriction depend on the restriction type. <p> <ul> <li><code>key</code>, <code>title</code> and <code>restrictionType</code> are mandatory.</li> <li><code>entries</code> and <code>entryValues</code> are required if <code>restrictionType </code> is <code>choice</code> or <code>multi-select</code>.</li> <li><code>defaultValue</code> is optional and its type depends on the <code>restrictionType</code></li> <li><code>hidden</code> type must have a <code>defaultValue</code> and will not be shown to the administrator. It can be used to pass along data that cannot be modified, such as a version code.</li> <li><code>description</code> is meant to describe the restriction in more detail to the administrator controlling the values, if the title is not sufficient.</li> </ul> <p> Only restrictions of type {@code bundle} and {@code bundle_array} can have one or multiple nested restriction elements. <p> In your manifest's <code>application</code> section, add the meta-data tag to point to the restrictions XML file as shown below: <pre> <application ... > <meta-data android:name="android.content.APP_RESTRICTIONS" android:resource="@xml/app_restrictions" /> ... </application> </pre> @see RestrictionEntry @see RestrictionsReceiver @see DevicePolicyManager#setRestrictionsProvider(ComponentName, ComponentName) @see DevicePolicyManager#setApplicationRestrictions(ComponentName, String, Bundle) */ var RestrictionsManager = { /** Broadcast intent delivered when a response is received for a permission request. The application should not interrupt the user by coming to the foreground if it isn't currently in the foreground. It can either post a notification informing the user of the response or wait until the next time the user launches the app. <p> For instance, if the user requested permission to make an in-app purchase, the app can post a notification that the request had been approved or denied. <p> The broadcast Intent carries the following extra: {@link #EXTRA_RESPONSE_BUNDLE}. */ ACTION_PERMISSION_RESPONSE_RECEIVED : "android.content.action.PERMISSION_RESPONSE_RECEIVED", /** Broadcast intent sent to the Restrictions Provider to handle a permission request from an app. It will have the following extras: {@link #EXTRA_PACKAGE_NAME}, {@link #EXTRA_REQUEST_TYPE}, {@link #EXTRA_REQUEST_ID} and {@link #EXTRA_REQUEST_BUNDLE}. The Restrictions Provider will handle the request and respond back to the RestrictionsManager, when a response is available, by calling {@link #notifyPermissionResponse}. <p> The BroadcastReceiver must require the {@link android.Manifest.permission#BIND_DEVICE_ADMIN} permission to ensure that only the system can send the broadcast. */ ACTION_REQUEST_PERMISSION : "android.content.action.REQUEST_PERMISSION", /** Activity intent that is optionally implemented by the Restrictions Provider package to challenge for an administrator PIN or password locally on the device. Apps will call this intent using {@link Activity#startActivityForResult}. On a successful response, {@link Activity#onActivityResult} will return a resultCode of {@link Activity#RESULT_OK}. <p> The intent must contain {@link #EXTRA_REQUEST_BUNDLE} as an extra and the bundle must contain at least {@link #REQUEST_KEY_MESSAGE} for the activity to display. <p> @see #createLocalApprovalIntent() */ ACTION_REQUEST_LOCAL_APPROVAL : "android.content.action.REQUEST_LOCAL_APPROVAL", /** The package name of the application making the request. <p> Type: String */ EXTRA_PACKAGE_NAME : "android.content.extra.PACKAGE_NAME", /** The request type passed in the {@link #ACTION_REQUEST_PERMISSION} broadcast. <p> Type: String */ EXTRA_REQUEST_TYPE : "android.content.extra.REQUEST_TYPE", /** The request ID passed in the {@link #ACTION_REQUEST_PERMISSION} broadcast. <p> Type: String */ EXTRA_REQUEST_ID : "android.content.extra.REQUEST_ID", /** The request bundle passed in the {@link #ACTION_REQUEST_PERMISSION} broadcast. <p> Type: {@link PersistableBundle} */ EXTRA_REQUEST_BUNDLE : "android.content.extra.REQUEST_BUNDLE", /** Contains a response from the administrator for specific request. The bundle contains the following information, at least: <ul> <li>{@link #REQUEST_KEY_ID}: The request ID.</li> <li>{@link #RESPONSE_KEY_RESULT}: The response result.</li> </ul> <p> Type: {@link PersistableBundle} */ EXTRA_RESPONSE_BUNDLE : "android.content.extra.RESPONSE_BUNDLE", /** Request type for a simple question, with a possible title and icon. <p> Required keys are: {@link #REQUEST_KEY_MESSAGE} <p> Optional keys are {@link #REQUEST_KEY_DATA}, {@link #REQUEST_KEY_ICON}, {@link #REQUEST_KEY_TITLE}, {@link #REQUEST_KEY_APPROVE_LABEL} and {@link #REQUEST_KEY_DENY_LABEL}. */ REQUEST_TYPE_APPROVAL : "android.request.type.approval", /** Key for request ID contained in the request bundle. <p> App-generated request ID to identify the specific request when receiving a response. This value is returned in the {@link #EXTRA_RESPONSE_BUNDLE}. <p> Type: String */ REQUEST_KEY_ID : "android.request.id", /** Key for request data contained in the request bundle. <p> Optional, typically used to identify the specific data that is being referred to, such as the unique identifier for a movie or book. This is not used for display purposes and is more like a cookie. This value is returned in the {@link #EXTRA_RESPONSE_BUNDLE}. <p> Type: String */ REQUEST_KEY_DATA : "android.request.data", /** Key for request title contained in the request bundle. <p> Optional, typically used as the title of any notification or dialog presented to the administrator who approves the request. <p> Type: String */ REQUEST_KEY_TITLE : "android.request.title", /** Key for request message contained in the request bundle. <p> Required, shown as the actual message in a notification or dialog presented to the administrator who approves the request. <p> Type: String */ REQUEST_KEY_MESSAGE : "android.request.mesg", /** Key for request icon contained in the request bundle. <p> Optional, shown alongside the request message presented to the administrator who approves the request. The content must be a compressed image such as a PNG or JPEG, as a byte array. <p> Type: byte[] */ REQUEST_KEY_ICON : "android.request.icon", /** Key for request approval button label contained in the request bundle. <p> Optional, may be shown as a label on the positive button in a dialog or notification presented to the administrator who approves the request. <p> Type: String */ REQUEST_KEY_APPROVE_LABEL : "android.request.approve_label", /** Key for request rejection button label contained in the request bundle. <p> Optional, may be shown as a label on the negative button in a dialog or notification presented to the administrator who approves the request. <p> Type: String */ REQUEST_KEY_DENY_LABEL : "android.request.deny_label", /** Key for issuing a new request, contained in the request bundle. If this is set to true, the Restrictions Provider must make a new request. If it is false or not specified, then the Restrictions Provider can return a cached response that has the same requestId, if available. If there's no cached response, it will issue a new one to the administrator. <p> Type: boolean */ REQUEST_KEY_NEW_REQUEST : "android.request.new_request", /** Key for the response result in the response bundle sent to the application, for a permission request. It indicates the status of the request. In some cases an additional message might be available in {@link #RESPONSE_KEY_MESSAGE}, to be displayed to the user. <p> Type: int <p> Possible values: {@link #RESULT_APPROVED}, {@link #RESULT_DENIED}, {@link #RESULT_NO_RESPONSE}, {@link #RESULT_UNKNOWN_REQUEST} or {@link #RESULT_ERROR}. */ RESPONSE_KEY_RESULT : "android.response.result", /** Response result value indicating that the request was approved. */ RESULT_APPROVED : "1", /** Response result value indicating that the request was denied. */ RESULT_DENIED : "2", /** Response result value indicating that the request has not received a response yet. */ RESULT_NO_RESPONSE : "3", /** Response result value indicating that the request is unknown, when it's not a new request. */ RESULT_UNKNOWN_REQUEST : "4", /** Response result value indicating an error condition. Additional error code might be available in the response bundle, for the key {@link #RESPONSE_KEY_ERROR_CODE}. There might also be an associated error message in the response bundle, for the key {@link #RESPONSE_KEY_MESSAGE}. */ RESULT_ERROR : "5", /** Error code indicating that there was a problem with the request. <p> Stored in {@link #RESPONSE_KEY_ERROR_CODE} field in the response bundle. */ RESULT_ERROR_BAD_REQUEST : "1", /** Error code indicating that there was a problem with the network. <p> Stored in {@link #RESPONSE_KEY_ERROR_CODE} field in the response bundle. */ RESULT_ERROR_NETWORK : "2", /** Error code indicating that there was an internal error. <p> Stored in {@link #RESPONSE_KEY_ERROR_CODE} field in the response bundle. */ RESULT_ERROR_INTERNAL : "3", /** Key for the optional error code in the response bundle sent to the application. <p> Type: int <p> Possible values: {@link #RESULT_ERROR_BAD_REQUEST}, {@link #RESULT_ERROR_NETWORK} or {@link #RESULT_ERROR_INTERNAL}. */ RESPONSE_KEY_ERROR_CODE : "android.response.errorcode", /** Key for the optional message in the response bundle sent to the application. <p> Type: String */ RESPONSE_KEY_MESSAGE : "android.response.msg", /** Key for the optional timestamp of when the administrator responded to the permission request. It is an represented in milliseconds since January 1, 1970 00:00:00.0 UTC. <p> Type: long */ RESPONSE_KEY_RESPONSE_TIMESTAMP : "android.response.timestamp", /** Name of the meta-data entry in the manifest that points to the XML file containing the application's available restrictions. @see #getManifestRestrictions(String) */ META_DATA_APP_RESTRICTIONS : "android.content.APP_RESTRICTIONS", /**Returns any available set of application-specific restrictions applicable to this application. @return {Object {android.os.Bundle}} the application restrictions as a Bundle. Returns null if there are no restrictions. */ getApplicationRestrictions : function( ) {}, /**Called by an application to check if there is an active Restrictions Provider. If there isn't, {@link #requestPermission(String, String, PersistableBundle)} is not available. @return {Boolean} whether there is an active Restrictions Provider. */ hasRestrictionsProvider : function( ) {}, /**Called by an application to request permission for an operation. The contents of the request are passed in a Bundle that contains several pieces of data depending on the chosen request type. @param {String} requestType The type of request. The type could be one of the predefined types specified here or a custom type that the specific Restrictions Provider might understand. For custom types, the type name should be namespaced to avoid collisions with predefined types and types specified by other Restrictions Providers. @param {String} requestId A unique id generated by the app that contains sufficient information to identify the parameters of the request when it receives the id in the response. @param {Object {PersistableBundle}} request A PersistableBundle containing the data corresponding to the specified request type. The keys for the data in the bundle depend on the request type. @throws IllegalArgumentException if any of the required parameters are missing. */ requestPermission : function( ) {}, /** */ createLocalApprovalIntent : function( ) {}, /**Called by the Restrictions Provider to deliver a response to an application. @param {String} packageName the application to deliver the response to. Cannot be null. @param {Object {PersistableBundle}} response the bundle containing the response status, request ID and other information. Cannot be null. @throws IllegalArgumentException if any of the required parameters are missing. */ notifyPermissionResponse : function( ) {}, /**Parse and return the list of restrictions defined in the manifest for the specified package, if any. @param {String} packageName The application for which to fetch the restrictions list. @return {Object {java.util.List}} The list of RestrictionEntry objects created from the XML file specified in the manifest, or null if none was specified. */ getManifestRestrictions : function( ) {}, /**Converts a list of restrictions to the corresponding bundle, using the following mapping: <table> <tr><th>RestrictionEntry</th><th>Bundle</th></tr> <tr><td>{@link android.content.RestrictionEntry#TYPE_BOOLEAN}</td><td>{@link Bundle#putBoolean}</td></tr> <tr><td>{@link android.content.RestrictionEntry#TYPE_CHOICE}, {@link android.content.RestrictionEntry#TYPE_MULTI_SELECT}</td> <td>{@link Bundle#putStringArray}</td></tr> <tr><td>{@link android.content.RestrictionEntry#TYPE_INTEGER}</td><td>{@link Bundle#putInt}</td></tr> <tr><td>{@link android.content.RestrictionEntry#TYPE_STRING}</td><td>{@link Bundle#putString}</td></tr> <tr><td>{@link android.content.RestrictionEntry#TYPE_BUNDLE}</td><td>{@link Bundle#putBundle}</td></tr> <tr><td>{@link android.content.RestrictionEntry#TYPE_BUNDLE_ARRAY}</td> <td>{@link Bundle#putParcelableArray}</td></tr> </table> @param {Object {java.util.List}} entries list of restrictions */ convertRestrictionsToBundle : function( ) {}, };