2022-03-09 09:36:17 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2023-12-11 09:08:03 +00:00
|
|
|
/**
|
|
|
|
* @file
|
2024-01-08 07:25:39 +00:00
|
|
|
* @kit MDMKit
|
2023-12-11 09:08:03 +00:00
|
|
|
*/
|
|
|
|
|
2023-04-21 02:25:11 +00:00
|
|
|
import type { AsyncCallback } from './@ohos.base';
|
2023-04-06 09:32:27 +00:00
|
|
|
import type Want from './@ohos.app.ability.Want';
|
2022-03-09 09:36:17 +00:00
|
|
|
|
|
|
|
/**
|
2022-11-10 11:19:37 +00:00
|
|
|
* This module provides the capability to manage the datetime of the enterprise devices.
|
2023-04-21 02:25:11 +00:00
|
|
|
*
|
2023-04-10 03:17:44 +00:00
|
|
|
* @namespace dateTimeManager
|
2022-03-09 09:36:17 +00:00
|
|
|
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
|
2022-11-10 11:19:37 +00:00
|
|
|
* @systemapi
|
|
|
|
* @since 9
|
2022-03-09 09:36:17 +00:00
|
|
|
*/
|
2022-11-10 11:19:37 +00:00
|
|
|
declare namespace dateTimeManager {
|
|
|
|
/**
|
|
|
|
* Sets the system time.
|
|
|
|
* This function can be called by a super administrator.
|
2023-04-21 02:25:11 +00:00
|
|
|
*
|
2022-11-10 11:19:37 +00:00
|
|
|
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
|
2024-04-26 08:46:39 +00:00
|
|
|
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
|
|
|
|
* The admin must have the corresponding permission.
|
2022-11-18 02:45:51 +00:00
|
|
|
* @param { number } time - time indicates the target time stamp (ms).
|
2022-11-10 11:19:37 +00:00
|
|
|
* @param { AsyncCallback<void> } callback - the callback of setDateTime.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
|
2024-05-28 09:05:58 +00:00
|
|
|
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
|
|
|
|
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
|
2024-04-26 08:46:39 +00:00
|
|
|
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
|
|
|
|
* 2. Incorrect parameter types; 3. Parameter verification failed.
|
2022-11-10 11:19:37 +00:00
|
|
|
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
|
|
|
|
* @systemapi
|
2022-11-18 02:45:51 +00:00
|
|
|
* @StageModelOnly
|
2022-11-10 11:19:37 +00:00
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
function setDateTime(admin: Want, time: number, callback: AsyncCallback<void>): void;
|
2022-03-09 09:36:17 +00:00
|
|
|
|
|
|
|
/**
|
2022-10-05 08:51:42 +00:00
|
|
|
* Sets the system time.
|
|
|
|
* This function can be called by a super administrator.
|
2023-04-21 02:25:11 +00:00
|
|
|
*
|
2022-10-27 06:57:02 +00:00
|
|
|
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
|
2024-04-26 08:46:39 +00:00
|
|
|
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
|
|
|
|
* The admin must have the corresponding permission.
|
2022-11-18 02:45:51 +00:00
|
|
|
* @param { number } time - time indicates the target time stamp (ms).
|
2022-10-05 08:51:42 +00:00
|
|
|
* @returns { Promise<void> } the promise returned by the setDateTime.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
|
2024-05-28 09:05:58 +00:00
|
|
|
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
|
|
|
|
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
|
2024-04-26 08:46:39 +00:00
|
|
|
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
|
|
|
|
* 2. Incorrect parameter types; 3. Parameter verification failed.
|
2022-10-05 08:51:42 +00:00
|
|
|
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
|
|
|
|
* @systemapi
|
2022-11-18 02:45:51 +00:00
|
|
|
* @StageModelOnly
|
2022-10-05 08:51:42 +00:00
|
|
|
* @since 9
|
2022-03-09 09:36:17 +00:00
|
|
|
*/
|
2022-11-10 11:19:37 +00:00
|
|
|
function setDateTime(admin: Want, time: number): Promise<void>;
|
2023-04-03 06:57:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Disallow modify the system time.
|
|
|
|
* This function can be called by a super administrator.
|
2023-04-21 02:25:11 +00:00
|
|
|
*
|
2023-04-03 06:57:07 +00:00
|
|
|
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
|
2024-04-26 08:46:39 +00:00
|
|
|
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
|
|
|
|
* The admin must have the corresponding permission.
|
2023-04-03 06:57:07 +00:00
|
|
|
* @param { boolean } disallow - true if the user is not allowed to modify the system time.
|
|
|
|
* @param { AsyncCallback<void> } callback - the callback of disallowModifyDateTime.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
|
2024-05-28 09:05:58 +00:00
|
|
|
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
|
|
|
|
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
|
2024-04-26 08:46:39 +00:00
|
|
|
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
|
|
|
|
* 2. Incorrect parameter types; 3. Parameter verification failed.
|
2023-04-03 06:57:07 +00:00
|
|
|
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
|
|
|
|
* @systemapi
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
function disallowModifyDateTime(admin: Want, disallow: boolean, callback: AsyncCallback<void>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disallow modify the system time.
|
|
|
|
* This function can be called by a super administrator.
|
2023-04-21 02:25:11 +00:00
|
|
|
*
|
2023-04-03 06:57:07 +00:00
|
|
|
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
|
2024-04-26 08:46:39 +00:00
|
|
|
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
|
|
|
|
* The admin must have the corresponding permission.
|
2023-04-03 06:57:07 +00:00
|
|
|
* @param { boolean } disallow - true if the user is not allowed to modify the system time.
|
|
|
|
* @returns { Promise<void> } the promise returned by the disallowModifyDateTime.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
|
2024-05-28 09:05:58 +00:00
|
|
|
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
|
|
|
|
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
|
2024-04-26 08:46:39 +00:00
|
|
|
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
|
|
|
|
* 2. Incorrect parameter types; 3. Parameter verification failed.
|
2023-04-03 06:57:07 +00:00
|
|
|
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
|
|
|
|
* @systemapi
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
function disallowModifyDateTime(admin: Want, disallow: boolean): Promise<void>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query the capability of modify the system time is allowed or disallowed.
|
|
|
|
* This function can be called by a super administrator.
|
2023-04-21 02:25:11 +00:00
|
|
|
*
|
2023-04-03 06:57:07 +00:00
|
|
|
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
|
2024-04-26 08:46:39 +00:00
|
|
|
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
|
|
|
|
* If the admin is not empty, it must have the corresponding permission.
|
2023-04-03 06:57:07 +00:00
|
|
|
* @param { AsyncCallback<boolean> } callback - return true if modify datetime is not allowed.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
|
2024-05-28 09:05:58 +00:00
|
|
|
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
|
|
|
|
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
|
2024-04-26 08:46:39 +00:00
|
|
|
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
|
|
|
|
* 2. Incorrect parameter types; 3. Parameter verification failed.
|
2023-04-03 06:57:07 +00:00
|
|
|
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
|
|
|
|
* @systemapi
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
function isModifyDateTimeDisallowed(admin: Want, callback: AsyncCallback<boolean>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query the capability of modify the system time is allowed or disallowed.
|
|
|
|
* This function can be called by a super administrator.
|
2023-04-21 02:25:11 +00:00
|
|
|
*
|
2023-04-03 06:57:07 +00:00
|
|
|
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
|
2024-04-26 08:46:39 +00:00
|
|
|
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
|
|
|
|
* If the admin is not empty, it must have the corresponding permission.
|
2023-04-03 06:57:07 +00:00
|
|
|
* @returns { Promise<boolean> } return true if modify datetime is not allowed.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 9200001 - The application is not an administrator application of the device.
|
2024-05-28 09:05:58 +00:00
|
|
|
* @throws { BusinessError } 9200002 - The administrator application does not have permission to manage the device.
|
2024-05-21 13:38:33 +00:00
|
|
|
* @throws { BusinessError } 201 - Permission verification failed. The application does not have the permission required to call the API.
|
|
|
|
* @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API.
|
2024-04-26 08:46:39 +00:00
|
|
|
* @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Mandatory parameters are left unspecified;
|
|
|
|
* 2. Incorrect parameter types; 3. Parameter verification failed.
|
2023-04-03 06:57:07 +00:00
|
|
|
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
|
|
|
|
* @systemapi
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
function isModifyDateTimeDisallowed(admin: Want): Promise<boolean>;
|
2022-11-10 11:19:37 +00:00
|
|
|
}
|
|
|
|
|
2024-04-26 08:46:39 +00:00
|
|
|
|
2023-04-21 02:25:11 +00:00
|
|
|
export default dateTimeManager;
|