lockscreen
createPincode
잠금번호를 생성한다.
successCallback
필드 | 설명 |
---|---|
없음 | 없음 |
errorCallback
필드 | 설명 |
---|---|
code | 에러코드 |
message | 에러메세지 |
Example
hone.channel.execute('lockscreen', 'createPincode', [],
function () {
alert("create pincode");
}, function (e) {
alert(JSON.stringify(e));
}
);
function () {
alert("create pincode");
}, function (e) {
alert(JSON.stringify(e));
}
);
show
잠금화면을 출력한다.
successCallback
필드 | 설명 |
---|---|
없음 | 없음 |
errorCallback
필드 | 설명 |
---|---|
code | 에러코드 |
message | 에러메세지 |
Example
hone.channel.execute('lockscreen', 'show', [],
function () {
alert("show pincode");
}, function (e) {
alert(JSON.stringify(e));
}
);
function () {
alert("show pincode");
}, function (e) {
alert(JSON.stringify(e));
}
);
changePincode
잠금번호를 변경한다.
successCallback
필드 | 설명 |
---|---|
없음 | 없음 |
errorCallback
필드 | 설명 |
---|---|
code | 에러코드 |
message | 에러메세지 |
Example
hone.channel.execute('lockscreen', 'changePincode', [],
function () {
alert("change pincode");
}, function (e) {
alert(JSON.stringify(e));
}
);
function () {
alert("change pincode");
}, function (e) {
alert(JSON.stringify(e));
}
);
hasPincode
잠금번호 생성여부를 확인한다.
successCallback
필드 | 설명 |
---|---|
result | 있으면 1 없으면 0 |
errorCallback
필드 | 설명 |
---|---|
code | 에러코드 |
message | 에러메세지 |
Example
hone.channel.execute('lockscreen', 'hasPincode', [],
function (result) {
alert(JSON.stringify(result));
}, function (e) {
alert(JSON.stringify(e));
}
);
function (result) {
alert(JSON.stringify(result));
}, function (e) {
alert(JSON.stringify(e));
}
);
Result
1
Error Code
Code | Cause | Comment |
---|---|---|
E11000 | 파라메터 값이 잘못되어 있을 경우 | |
E11001 | 전달된 액션 값이 알 수 없는 액션일 경우 | |
E11050 | 실행 중 오류가 발생 되었을 경우 | |
E11051 | 비밀번호가 일치하지 않는 경우 | |
E11099 | 알 수없는 오류가 발생 되었을 경우 | |