/* * Copyright (c) 2023-2024 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. */ /** * @file * @kit MDMKit */ import type Want from './@ohos.app.ability.Want'; /** * This module provides the capability to manage the location of the enterprise devices. * * @namespace locationManager * @syscap SystemCapability.Customization.EnterpriseDeviceManager * @stagemodelonly * @since 11 */ declare namespace locationManager { /** * The location policy. * * @enum { number } * @syscap SystemCapability.Customization.EnterpriseDeviceManager * @stagemodelonly * @since 12 */ export enum LocationPolicy { /** * Default location service. * * @syscap SystemCapability.Customization.EnterpriseDeviceManager * @stagemodelonly * @since 12 */ DEFAULT_LOCATION_SERVICE = 0, /** * Disallows open location service. * * @syscap SystemCapability.Customization.EnterpriseDeviceManager * @stagemodelonly * @since 12 */ DISALLOW_LOCATION_SERVICE = 1, /** * Force open the location service. * * @syscap SystemCapability.Customization.EnterpriseDeviceManager * @stagemodelonly * @since 12 */ FORCE_OPEN_LOCATION_SERVICE = 2, } /** * Sets the policy of location service. * This function can be called by a super administrator. * * @permission ohos.permission.ENTERPRISE_MANAGE_LOCATION * @param { Want } admin - admin indicates the enterprise admin extension ability information. * The admin must have the corresponding permission. * @param { LocationPolicy } policy - the policy of location service. * @throws { BusinessError } 9200001 - The application is not an administrator application of the device. * @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device. * @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API. * @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; * 2. Incorrect parameter types; 3. Parameter verification failed. * @syscap SystemCapability.Customization.EnterpriseDeviceManager * @stagemodelonly * @since 12 */ function setLocationPolicy(admin: Want, policy: LocationPolicy): void; /** * Gets device location service policy. * This function can be called by a super administrator. * * @permission ohos.permission.ENTERPRISE_MANAGE_LOCATION * @param { Want } admin - admin indicates the enterprise admin extension ability information. * If the admin is not empty, it must have the corresponding permission. * @returns { LocationPolicy } the policy of location service. * @throws { BusinessError } 9200001 - The application is not an administrator application of the device. * @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device. * @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API. * @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; * 2. Incorrect parameter types; 3. Parameter verification failed. * @syscap SystemCapability.Customization.EnterpriseDeviceManager * @stagemodelonly * @since 12 */ function getLocationPolicy(admin: Want): LocationPolicy; } export default locationManager;