interface_sdk-js/api/@ohos.enterprise.dateTimeManager.d.ts
h30034439 19d1f6255d EDM错误码修正为英文校审后
Signed-off-by: h30034439 <hanyiyichn@163.com>
2024-05-21 21:38:33 +08:00

166 lines
9.2 KiB
TypeScript

/*
* 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.
*/
/**
* @file
* @kit MDMKit
*/
import type { AsyncCallback } from './@ohos.base';
import type Want from './@ohos.app.ability.Want';
/**
* This module provides the capability to manage the datetime of the enterprise devices.
*
* @namespace dateTimeManager
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
* @systemapi
* @since 9
*/
declare namespace dateTimeManager {
/**
* Sets the system time.
* This function can be called by a super administrator.
*
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } time - time indicates the target time stamp (ms).
* @param { AsyncCallback<void> } callback - the callback of setDateTime.
* @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 } 202 - Permission verification failed. A non-system application calls a system 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
* @systemapi
* @StageModelOnly
* @since 9
*/
function setDateTime(admin: Want, time: number, callback: AsyncCallback<void>): void;
/**
* Sets the system time.
* This function can be called by a super administrator.
*
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { number } time - time indicates the target time stamp (ms).
* @returns { Promise<void> } the promise returned by the setDateTime.
* @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 } 202 - Permission verification failed. A non-system application calls a system 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
* @systemapi
* @StageModelOnly
* @since 9
*/
function setDateTime(admin: Want, time: number): Promise<void>;
/**
* Disallow modify the system time.
* This function can be called by a super administrator.
*
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { boolean } disallow - true if the user is not allowed to modify the system time.
* @param { AsyncCallback<void> } callback - the callback of disallowModifyDateTime.
* @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 } 202 - Permission verification failed. A non-system application calls a system 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
* @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.
*
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* The admin must have the corresponding permission.
* @param { boolean } disallow - true if the user is not allowed to modify the system time.
* @returns { Promise<void> } the promise returned by the disallowModifyDateTime.
* @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 } 202 - Permission verification failed. A non-system application calls a system 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
* @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.
*
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* If the admin is not empty, it must have the corresponding permission.
* @param { AsyncCallback<boolean> } callback - return true if modify datetime is not allowed.
* @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 } 202 - Permission verification failed. A non-system application calls a system 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
* @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.
*
* @permission ohos.permission.ENTERPRISE_SET_DATETIME
* @param { Want } admin - admin indicates the enterprise admin extension ability information.
* If the admin is not empty, it must have the corresponding permission.
* @returns { Promise<boolean> } return true if modify datetime is not allowed.
* @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 } 202 - Permission verification failed. A non-system application calls a system 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
* @systemapi
* @StageModelOnly
* @since 10
*/
function isModifyDateTimeDisallowed(admin: Want): Promise<boolean>;
}
export default dateTimeManager;