Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
54e6180b
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
54e6180b
编写于
7月 14, 2022
作者:
C
caiminggang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
EnterpriseDeviceManagement可变参数修改
Signed-off-by:
N
caiminggang
<
caiminggang1@huawei.com
>
上级
34b351d0
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
127 addition
and
14 deletion
+127
-14
zh-cn/application-dev/reference/apis/js-apis-enterprise-device-manager.md
...n-dev/reference/apis/js-apis-enterprise-device-manager.md
+127
-14
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-enterprise-device-manager.md
浏览文件 @
54e6180b
...
...
@@ -14,7 +14,7 @@ import enterpriseDeviceManager from '@ohos.enterpriseDeviceManager';
## enterpriseDeviceManager.enableAdmin
enableAdmin(admin: Want, enterpriseInfo: EnterpriseInfo, type: AdminType,
userId?: number,
callback: AsyncCallback
\<
boolean>): void
enableAdmin(admin: Want, enterpriseInfo: EnterpriseInfo, type: AdminType, callback: AsyncCallback
\<
boolean>): void
以异步方法根据给定的包名和类名激活设备管理员应用,使用Callback形式返回是否激活成功。
...
...
@@ -26,12 +26,55 @@ SystemCapability.Customation.EnterpriseDeviceManager
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ----------------------------------- | --- | ------------------ |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 设备管理员应用 |
| enterpriseInfo |
[
EnterpriseInfo
](
#EnterpriseInfo
)
| 是 | 设备管理员应用的企业信息 |
| type |
[
AdminType
](
#AdminType
)
| 是 | 激活的设备管理员类型 |
| callback | AsyncCallback
\<
boolean> | 是 | callback方式返回是否激活成功 |
**示例**
:
```
js
let
wantTemp
=
{
bundleName
:
"
com.example.myapplication
"
,
abilityName
:
"
com.example.myapplication.MainAbility
"
,
};
let
enterpriseInfo
=
{
name
:
"
enterprise name
"
,
description
:
"
enterprise description
"
}
enterpriseDeviceManager
.
enableAdmin
(
wantTemp
,
enterpriseInfo
,
enterpriseDeviceManager
.
AdminType
.
ADMIN_TYPE_NORMAL
,
(
error
,
result
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
}
console
.
log
(
"
result is
"
+
result
);
});
```
## enterpriseDeviceManager.enableAdmin
enableAdmin(admin: Want, enterpriseInfo: EnterpriseInfo, type: AdminType, userId: number, callback: AsyncCallback
\<
boolean>): void
以异步方法根据给定的包名和类名激活设备管理员应用,使用Callback形式返回是否激活成功。
**需要权限:**
ohos.permission.MANAGE_ADMIN
**系统能力:**
SystemCapability.Customation.EnterpriseDeviceManager
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ----------------------------------- | --- | ---------------------------- |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 设备管理员应用 |
| enterpriseInfo |
[
EnterpriseInfo
](
#EnterpriseInfo
)
| 是 | 设备管理员应用的企业信息 |
| type |
[
AdminType
](
#AdminType
)
| 是 | 激活的设备管理员类型 |
| userId | number |
否
| 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 |
| userId | number |
是
| 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 |
| callback | AsyncCallback
\<
boolean> | 是 | callback方式返回是否激活成功 |
**示例**
:
...
...
@@ -48,7 +91,7 @@ let enterpriseInfo = {
enterpriseDeviceManager
.
enableAdmin
(
wantTemp
,
enterpriseInfo
,
enterpriseDeviceManager
.
AdminType
.
ADMIN_TYPE_NORMAL
,
100
,
(
error
,
result
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
return
;
}
console
.
log
(
"
result is
"
+
result
);
});
...
...
@@ -102,14 +145,51 @@ enterpriseDeviceManager.enableAdmin(wantTemp, enterpriseInfo, enterpriseDeviceMa
## enterpriseDeviceManager.disableAdmin
disableAdmin(admin: Want, userId?: number, callback: AsyncCallback
\<
boolean>): void
disableAdmin(admin: Want, callback: AsyncCallback
\<
boolean>): void
以异步方法根据给定的包名和类名将设备普通管理员应用去激活,使用Callback形式返回是否去激活成功。
**需要权限:**
ohos.permission.MANAGE_ADMIN
**系统能力:**
SystemCapability.Customation.EnterpriseDeviceManager
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------- | --- | ------------------- |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 普通设备管理员应用 |
| callback | AsyncCallback
\<
boolean> | 是 | callback方式返回是否去激活成功 |
**示例**
:
```
js
let
wantTemp
=
{
bundleName
:
"
bundleName
"
,
abilityName
:
"
abilityName
"
,
};
enterpriseDeviceManager
.
disableAdmin
(
wantTemp
,
(
error
,
result
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
}
console
.
log
(
"
result is
"
+
result
);
});
```
## enterpriseDeviceManager.disableAdmin
disableAdmin(admin: Want, userId: number, callback: AsyncCallback
\<
boolean>): void
以异步方法根据给定的包名和类名将设备普通管理员应用去激活,使用Callback形式返回是否去激活成功。
**需要权限:**
ohos.permission.MANAGE_ADMIN
**系统能力:**
SystemCapability.Customation.EnterpriseDeviceManager
**参数**
:
...
...
@@ -117,7 +197,7 @@ SystemCapability.Customation.EnterpriseDeviceManager
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------- | --- | ---------------------------- |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 普通设备管理员应用 |
| userId | number |
否
| 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 |
| userId | number |
是
| 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 |
| callback | AsyncCallback
\<
boolean> | 是 | callback方式返回是否去激活成功 |
**示例**
:
...
...
@@ -130,7 +210,7 @@ let wantTemp = {
enterpriseDeviceManager
.
disableAdmin
(
wantTemp
,
100
,
(
error
,
result
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
return
;
}
console
.
log
(
"
result is
"
+
result
);
});
...
...
@@ -198,7 +278,7 @@ let bundleName = "com.example.myapplication";
enterpriseDeviceManager
.
disableSuperAdmin
(
bundleName
,
(
error
,
result
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
return
;
}
console
.
log
(
"
result is
"
+
result
);
});
...
...
@@ -238,7 +318,7 @@ enterpriseDeviceManager.disableSuperAdmin(bundleName).then((result) => {
## enterpriseDeviceManager.isAdminEnabled
isAdminEnabled(admin: Want,
userId?: number,
callback: AsyncCallback
\<
boolean>): void
isAdminEnabled(admin: Want, callback: AsyncCallback
\<
boolean>): void
以异步方法根据给定的包名和类名判断设备管理员应用是否被激活,使用Callback形式返回是否处于激活状态。
...
...
@@ -247,10 +327,43 @@ SystemCapability.Customation.EnterpriseDeviceManager
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------- | --- | -------------------- |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 设备管理员应用 |
| callback | AsyncCallback
\<
boolean> | 是 | callback方式返回是否处于激活状态 |
**示例**
:
```
js
let
wantTemp
=
{
bundleName
:
"
bundleName
"
,
abilityName
:
"
abilityName
"
,
};
enterpriseDeviceManager
.
isAdminEnabled
(
wantTemp
,
(
error
,
result
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
}
console
.
log
(
"
result is
"
+
result
);
});
```
## enterpriseDeviceManager.isAdminEnabled
isAdminEnabled(admin: Want, userId: number, callback: AsyncCallback
\<
boolean>): void
以异步方法根据给定的包名和类名判断设备管理员应用是否被激活,使用Callback形式返回是否处于激活状态。
**系统能力:**
SystemCapability.Customation.EnterpriseDeviceManager
**参数**
:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------------- | --- | ---------------------------- |
| admin |
[
Want
](
js-apis-application-Want.md
)
| 是 | 设备管理员应用 |
| userId | number |
否
| 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 |
| userId | number |
是
| 用户ID。默认值:调用方所在用户,取值范围:大于等于0。 |
| callback | AsyncCallback
\<
boolean> | 是 | callback方式返回是否处于激活状态 |
**示例**
:
...
...
@@ -263,7 +376,7 @@ let wantTemp = {
enterpriseDeviceManager
.
isAdminEnabled
(
wantTemp
,
100
,
(
error
,
result
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
return
;
}
console
.
log
(
"
result is
"
+
result
);
});
...
...
@@ -328,7 +441,7 @@ let bundleName = "com.example.myapplication";
enterpriseDeviceManager
.
isSuperAdmin
(
bundleName
,
(
error
,
result
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
return
;
}
console
.
log
(
"
result is
"
+
result
);
});
...
...
@@ -391,7 +504,7 @@ let wantTemp = {
enterpriseDeviceManager
.
getDeviceSettingsManager
((
error
,
mgr
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
return
;
}
mgr
.
setDateTime
(
wantTemp
,
1526003846000
,
(
error
,
value
)
=>
{
if
(
error
!=
null
)
{
...
...
@@ -425,7 +538,7 @@ let wantTemp = {
bundleName
:
"
bundleName
"
,
abilityName
:
"
abilityName
"
,
};
mg
r
.
getDeviceSettingsManager
().
then
((
mgr
)
=>
{
enterpriseDeviceManage
r
.
getDeviceSettingsManager
().
then
((
mgr
)
=>
{
mgr
.
setDateTime
(
wantTemp
,
1526003846000
).
then
((
value
)
=>
{
console
.
log
(
value
);
}).
catch
((
error
)
=>
{
...
...
@@ -539,7 +652,7 @@ let wantTemp = {
enterpriseDeviceManager
.
getEnterpriseInfo
(
wantTemp
,
(
error
,
result
)
=>
{
if
(
error
!=
null
)
{
console
.
log
(
"
error occurs
"
+
error
);
return
;
return
;
}
console
.
log
(
result
.
name
);
console
.
log
(
result
.
description
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录