/* * Copyright (c) 2021 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 bundle from './../@ohos.bundle'; /** * @name Provides parameters required for installing or uninstalling an application. * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * @systemapi Hide this for inner system use * @deprecated since 9 * @useinstead ohos.bundle.installer#InstallParam */ export interface InstallParam { /** * @default Indicates the user id * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * @deprecated since 9 * @useinstead ohos.bundle.installer.InstallParam#userId */ userId: number; /** * @default Indicates the install flag * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * @deprecated since 9 * @useinstead ohos.bundle.installer.InstallParam#installFlag */ installFlag: number; /** * @default Indicates whether the param has data * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * @deprecated since 9 * @useinstead ohos.bundle.installer.InstallParam#isKeepData */ isKeepData: boolean; } /** * @name Indicates the install or uninstall status * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * @systemapi Hide this for inner system use * @deprecated since 9 */ export interface InstallStatus { /** * @default Indicates the install or uninstall error code * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * @deprecated since 9 */ status: bundle.InstallErrorCode; /** * @default Indicates the install or uninstall result string message * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * @deprecated since 9 */ statusMessage: string; } /** * @name Offers install, upgrade, and remove bundles on the devices. * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * @systemapi Hide this for inner system use * @deprecated since 9 * @useinstead ohos.bundle.installer#BundleInstaller */ export interface BundleInstaller { /** * Install an application in a HAP. * * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * * @param bundleFilePaths Indicates the path where the bundle of the application is stored. The path should be the * relative path to the data directory of the current application. * @param param Indicates other parameters required for the installation. * @returns InstallStatus * @permission ohos.permission.INSTALL_BUNDLE * @deprecated since 9 * @useinstead ohos.bundle.installer.BundleInstaller#install */ install(bundleFilePaths: Array, param: InstallParam, callback: AsyncCallback): void; /** * Uninstall an application. * * @since 7 * @syscap SystemCapability.BundleManager.BundleFramework * * @param bundleName Indicates the bundle name of the application to be uninstalled. * @param param Indicates other parameters required for the uninstall. * @returns InstallStatus * @permission ohos.permission.INSTALL_BUNDLE * @deprecated since 9 * @useinstead ohos.bundle.installer.BundleInstaller#uninstall */ uninstall(bundleName: string, param: InstallParam, callback: AsyncCallback): void; /** * recover an application. * * @since 8 * @syscap SystemCapability.BundleManager.BundleFramework * * @param bundleName Indicates the bundle name of the application to be recovered. * @param param Indicates other parameters required for the recover. * @returns InstallStatus * @permission ohos.permission.INSTALL_BUNDLE * @systemapi Hide this for inner system use * @deprecated since 9 * @useinstead ohos.bundle.installer.BundleInstaller#recover */ recover(bundleName: string, param: InstallParam, callback: AsyncCallback): void; }