From bd6b749fabb322070c20c8eccc5346813e767897 Mon Sep 17 00:00:00 2001 From: xsz233 Date: Mon, 10 Oct 2022 10:12:14 +0800 Subject: [PATCH] IssueNo: #I5US2G Description: bms app control js interface Signed-off-by: xsz233 --- api/@ohos.bundle.appControl.d.ts | 120 +++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 api/@ohos.bundle.appControl.d.ts diff --git a/api/@ohos.bundle.appControl.d.ts b/api/@ohos.bundle.appControl.d.ts new file mode 100644 index 0000000000..0f9de6b9fb --- /dev/null +++ b/api/@ohos.bundle.appControl.d.ts @@ -0,0 +1,120 @@ +/* + * Copyright (c) 2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { AsyncCallback } from './basic'; +import Want from './@ohos.application.Want'; + +/** + * Used for application interception control + * @namespace appControl + * @syscap SystemCapability.BundleManager.BundleFramework.AppControl + * @systemapi + * @since 9 + */ +declare namespace appControl { + /** + * Set the disposed status of a specified bundle. + * @permission ohos.permission.MANAGE_DISPOSED_APP_STATUS + * @param { string } appId - Indicates the app ID of the application. + * @param { Want } disposedWant - Indicates the disposed want. + * @param { AsyncCallback } callback - The callback of setting the disposed status result. + * @throws { BusinessError } 201 - Permission denied. + * @throws { BusinessError } 401 - The parameter check failed. + * @throws { BusinessError } 801 - Capicity not supported. + * @throws { BusinessError } 17700005 - The specified appId was not found. + * @syscap SystemCapability.BundleManager.BundleFramework.AppControl + * @systemapi + * @since 9 + */ + function setDisposedStatus(appId: string, disposedWant: Want, callback: AsyncCallback): void; + + /** + * Set the disposed status of a specified bundle. + * @permission ohos.permission.MANAGE_DISPOSED_APP_STATUS + * @param { string } appId - Indicates the app ID of the application. + * @param { Want } disposedWant - Indicates the disposed want. + * @returns { Promise } The result of setting the disposed status of a specified bundle. + * @throws { BusinessError } 201 - Permission denied. + * @throws { BusinessError } 401 - The parameter check failed. + * @throws { BusinessError } 801 - Capicity not supported. + * @throws { BusinessError } 17700005 - The specified appId was not found. + * @syscap SystemCapability.BundleManager.BundleFramework.AppControl + * @systemapi + * @since 9 + */ + function setDisposedStatus(appId: string, disposedWant: Want): Promise; + + /** + * Obtains the disposed status of a specified bundle. + * @permission ohos.permission.MANAGE_DISPOSED_APP_STATUS + * @param { string } appId - Indicates the app ID of the application. + * @param { AsyncCallback } callback - The callback of getting the disposed status of a specified bundle result. + * @throws { BusinessError } 201 - Permission denied. + * @throws { BusinessError } 401 - The parameter check failed. + * @throws { BusinessError } 801 - Capicity not supported. + * @throws { BusinessError } 17700005 - The specified appId was not found. + * @syscap SystemCapability.BundleManager.BundleFramework.AppControl + * @systemapi + * @since 9 + */ + function getDisposedStatus(appId: string, callback: AsyncCallback): void; + + /** + * Obtains the disposed status of a specified bundle. + * @permission ohos.permission.MANAGE_DISPOSED_APP_STATUS + * @param { string } appId - Indicates the app ID of the application. + * @returns { Promise } Returns the disposed status of a specified bundle. + * @throws { BusinessError } 201 - Permission denied. + * @throws { BusinessError } 401 - The parameter check failed. + * @throws { BusinessError } 801 - Capicity not supported. + * @throws { BusinessError } 17700005 - The specified appId was not found. + * @syscap SystemCapability.BundleManager.BundleFramework.AppControl + * @systemapi + * @since 9 + */ + function getDisposedStatus(appId: string): Promise; + + /** + * Delete the disposed status of a specified bundle. + * @permission ohos.permission.MANAGE_DISPOSED_APP_STATUS + * @param { string } appId - Indicates the app ID of the application. + * @param { AsyncCallback } callback - the callback of deleting the disposed status of a specified bundle result. + * @throws { BusinessError } 201 - Permission denied. + * @throws { BusinessError } 401 - The parameter check failed. + * @throws { BusinessError } 801 - Capicity not supported. + * @throws { BusinessError } 17700005 - The specified appId was not found. + * @syscap SystemCapability.BundleManager.BundleFramework.AppControl + * @systemapi + * @since 9 + */ + function deleteDisposedStatus(appId: string, callback: AsyncCallback): void; + + /** + * Delete the disposed status of a specified bundle. + * @permission ohos.permission.MANAGE_DISPOSED_APP_STATUS + * @param { string } appId - Indicates the app ID of the application. + * @returns { Promise } Returns the result of deleting the disposed status of a specified bundle. + * @throws { BusinessError } 201 - Permission denied. + * @throws { BusinessError } 401 - The parameter check failed. + * @throws { BusinessError } 801 - Capicity not supported. + * @throws { BusinessError } 17700005 - The specified appId was not found. + * @syscap SystemCapability.BundleManager.BundleFramework.AppControl + * @systemapi + * @since 9 + */ + function deleteDisposedStatus(appId: string): Promise; +} + +export default appControl; -- Gitee