未验证 提交 50fca9b2 编写于 作者: O openharmony_ci 提交者: Gitee

!21349 审核员问题

Merge pull request !21349 from 姚保华/master
......@@ -113,7 +113,7 @@ deviceSettings.getScreenOffTime(wantTemp).then((result) => {
installUserCertificate(admin: Want, certificate: CertBlob, callback: AsyncCallback<string>): void
安装用户证书,使用callback异步回调。
指定设备管理应用安装用户证书,使用callback异步回调。
**需要权限:** ohos.permission.ENTERPRISE_MANAGE_CERTIFICATE
......@@ -172,7 +172,7 @@ new Promise((resolve, reject) => {
installUserCertificate(admin: Want, certificate: CertBlob): Promise<string>
安装用户证书,使用Promise异步回调。
指定设备管理应用安装用户证书,使用Promise异步回调。
**需要权限:** ohos.permission.ENTERPRISE_MANAGE_CERTIFICATE
......@@ -230,7 +230,7 @@ deviceSettings.installUserCertificate(wantTemp, { inData: certFileArray, alias:
## CertBlob
证书信息
证书信息
**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager
......@@ -245,7 +245,7 @@ deviceSettings.installUserCertificate(wantTemp, { inData: certFileArray, alias:
uninstallUserCertificate(admin: Want, certUri: string, callback: AsyncCallback<void>): void
卸载用户证书,使用callback异步回调。
指定设备管理应用卸载用户证书,使用callback异步回调。
**需要权限:** ohos.permission.ENTERPRISE_MANAGE_CERTIFICATE
......@@ -258,7 +258,7 @@ uninstallUserCertificate(admin: Want, certUri: string, callback: AsyncCallback&l
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------- | ---- | ------------------------------- |
| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理应用。 |
| certUri | string | 是 | 证书uri,由安装用户证书接口返回 |
| certUri | string | 是 | 证书uri,由安装用户证书接口返回 |
| callback | AsyncCallback<void> | 是 | 回调函数,当接口调用成功,err为null,否则为错误对象。 |
**错误码**
......@@ -292,7 +292,7 @@ deviceSettings.uninstallUserCertificate(wantTemp, aliasStr, (err) => {
uninstallUserCertificate(admin: Want, certUri: string): Promise<void>
卸载用户证书,使用Promise异步回调。
指定设备管理应用卸载用户证书,使用Promise异步回调。
**需要权限:** ohos.permission.ENTERPRISE_MANAGE_CERTIFICATE
......@@ -305,13 +305,13 @@ uninstallUserCertificate(admin: Want, certUri: string): Promise<void>
| 参数名 | 类型 | 必填 | 说明 |
| ----- | ----------------------------------- | ---- | ------- |
| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理应用。 |
| certUri | string | 是 | 证书uri,由安装用户证书接口返回 |
| certUri | string | 是 | 证书uri,由安装用户证书接口返回 |
**返回值:**
| 类型 | 说明 |
| --------------------- | ------------------------- |
| Promise<void> | 无返回结果的Promise对象。当指定设备管理应用卸载用户证书失败时会抛出错误对象 |
| Promise<void> | 无返回结果的Promise对象。当指定设备管理应用卸载用户证书失败时会抛出错误对象 |
**错误码**
......
......@@ -508,7 +508,7 @@ setGlobalProxy(admin: Want, httpProxy: connection.HttpProxy, callback: AsyncCall
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------- | ---- | ------------------------------- |
| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理应用。 |
| httpProxy | [connection.HttpProxy](js-apis-net-connection.md) | 是 | 网络全局Http代理配置信息。 |
| httpProxy | [connection.HttpProxy](js-apis-net-connection.md#httpproxy10) | 是 | 网络全局Http代理配置信息。 |
| callback | AsyncCallback<void> | 是 | 回调函数。当接口调用成功,err为null,否则err为错误对象。 |
**错误码**
......@@ -561,7 +561,7 @@ setGlobalProxy(admin: Want, httpProxy: connection.HttpProxy): Promise\<void>
| 参数名 | 类型 | 必填 | 说明 |
| ----- | ----------------------------------- | ---- | ------- |
| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理应用。 |
| httpProxy | [connection.HttpProxy](js-apis-net-connection.md) | 是 | 网络全局Http代理配置信息。 |
| httpProxy | [connection.HttpProxy](js-apis-net-connection.md#httpproxy10) | 是 | 网络全局Http代理配置信息。 |
| isDisabled | boolean | 是 | true表示禁用该网络接口,false表示开启该网络接口。 |
**返回值:**
......@@ -618,7 +618,7 @@ getGlobalProxy(admin: Want, callback: AsyncCallback\<connection.HttpProxy>): voi
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------- | ---- | ------------------------------- |
| admin | [Want](js-apis-app-ability-want.md) | 是 | 设备管理应用。 |
| callback | AsyncCallback&lt;connection.HttpProxy&gt; | 是 | 回调函数。当接口调用成功,err为null,否则err为错误对象。 |
| callback | AsyncCallback&lt;[connection.HttpProxy](js-apis-net-connection.md#httpproxy10)&gt; | 是 | 回调函数。当接口调用成功,err为null,否则err为错误对象。 |
**错误码**
......@@ -668,7 +668,7 @@ getGlobalProxy(admin: Want): Promise\<connection.HttpProxy>
| 类型 | 说明 |
| --------------------- | ------------------------- |
| Promise&lt;connection.HttpProxy&gt; | Promise对象,返回网络全局Http代理配置信息。 |
| Promise&lt;[connection.HttpProxy](js-apis-net-connection.md#httpproxy10)&gt; | Promise对象,返回网络全局Http代理配置信息。 |
**错误码**
......
......@@ -115,7 +115,7 @@ usbManager.setUsbPolicy(wantTemp, policy).then(() => {
## UsbPolicy
USB读写策略的枚举
USB读写策略的枚举
**系统能力:** SystemCapability.Customization.EnterpriseDeviceManager
......@@ -124,4 +124,4 @@ USB读写策略的枚举
| 名称 | 值 | 说明 |
| -------- | -------- | -------- |
| READ_WRITE | 0 | 可读可写。 |
| READ_ONLY | 1 | 只读 |
| READ_ONLY | 1 | 只读 |
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册