mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2024-11-27 09:22:53 +00:00
commit
a7ba520004
78
api/@ohos.enterprise.dateTimeManager.d.ts
vendored
78
api/@ohos.enterprise.dateTimeManager.d.ts
vendored
@ -13,8 +13,8 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { AsyncCallback } from "./basic";
|
||||
import Want from "./@ohos.app.ability.Want";
|
||||
import { AsyncCallback } from './basic';
|
||||
import type Want from './@ohos.app.ability.Want';
|
||||
|
||||
/**
|
||||
* This module provides the capability to manage the datetime of the enterprise devices.
|
||||
@ -62,6 +62,80 @@ declare namespace dateTimeManager {
|
||||
* @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 administrator ability information.
|
||||
* @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 of the device.
|
||||
* @throws { BusinessError } 9200002 - the administrator application does not have permission to manage the device.
|
||||
* @throws { BusinessError } 201 - the application does not have permission to call this function.
|
||||
* @throws { BusinessError } 202 - not system application.
|
||||
* @throws { BusinessError } 401 - invalid input parameter.
|
||||
* @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 administrator ability information.
|
||||
* @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 of the device.
|
||||
* @throws { BusinessError } 9200002 - the administrator application does not have permission to manage the device.
|
||||
* @throws { BusinessError } 201 - the application does not have permission to call this function.
|
||||
* @throws { BusinessError } 202 - not system application.
|
||||
* @throws { BusinessError } 401 - invalid input parameter.
|
||||
* @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 administrator ability information.
|
||||
* @param { AsyncCallback<boolean> } callback - return true if modify datetime is not allowed.
|
||||
* @throws { BusinessError } 9200001 - the application is not an administrator of the device.
|
||||
* @throws { BusinessError } 9200002 - the administrator application does not have permission to manage the device.
|
||||
* @throws { BusinessError } 201 - the application does not have permission to call this function.
|
||||
* @throws { BusinessError } 202 - not system application.
|
||||
* @throws { BusinessError } 401 - invalid input parameter.
|
||||
* @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 administrator ability information.
|
||||
* @returns { Promise<boolean> } return true if modify datetime is not allowed.
|
||||
* @throws { BusinessError } 9200001 - the application is not an administrator of the device.
|
||||
* @throws { BusinessError } 9200002 - the administrator application does not have permission to manage the device.
|
||||
* @throws { BusinessError } 201 - the application does not have permission to call this function.
|
||||
* @throws { BusinessError } 202 - not system application.
|
||||
* @throws { BusinessError } 401 - invalid input parameter.
|
||||
* @syscap SystemCapability.Customization.EnterpriseDeviceManager
|
||||
* @systemapi
|
||||
* @StageModelOnly
|
||||
* @since 10
|
||||
*/
|
||||
function isModifyDateTimeDisallowed(admin: Want): Promise<boolean>;
|
||||
}
|
||||
|
||||
export default dateTimeManager;
|
@ -166,6 +166,7 @@ dialling
|
||||
dimbehind
|
||||
dirent
|
||||
disables
|
||||
disallowed
|
||||
discharging
|
||||
disconnecting
|
||||
disconnection
|
||||
|
Loading…
Reference in New Issue
Block a user