/* * 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. */ import { AsyncCallback } from "./basic"; import formBindingData from "./@ohos.app.form.formBindingData"; import formInfo from "./@ohos.app.form.formInfo"; import Want from "./@ohos.app.ability.Want"; /** * Interface of formProvider. * @namespace formProvider * @syscap SystemCapability.Ability.Form * @since 9 */ declare namespace formProvider { /** * Set next update time for a specified form. * @param { string } formId - Indicates the form ID. * @param { number } minute - Indicates duration minute before next update. * @param { AsyncCallback } callback - The callback of setFormNextRefreshTime. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500060 - A service connection error happened, please try again later. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @throws { BusinessError } 16501001 - The ID of the form to be operated does not exist. * @throws { BusinessError } 16501002 - The number of forms exceeds upper bound. * @throws { BusinessError } 16501003 - The form can not be operated by the current application. * @syscap SystemCapability.Ability.Form * @since 9 */ function setFormNextRefreshTime(formId: string, minute: number, callback: AsyncCallback): void; /** * Set next update time for a specified form. * @param { string } formId - Indicates the form ID. * @param { number } minute - Indicates duration minute before next update. * @returns { Promise } The promise returned by the function. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500060 - A service connection error happened, please try again later. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @throws { BusinessError } 16501001 - The ID of the form to be operated does not exist. * @throws { BusinessError } 16501002 - The number of forms exceeds upper bound. * @throws { BusinessError } 16501003 - The form can not be operated by the current application. * @syscap SystemCapability.Ability.Form * @since 9 */ function setFormNextRefreshTime(formId: string, minute: number): Promise; /** * Update a specified form. * Client to communication with FormManagerService. * @param { string } formId - Indicates the form ID. * @param { formBindingData.FormBindingData } formBindingData - Indicates the form data. * @param { AsyncCallback } callback - The callback of updateForm. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500060 - A service connection error happened, please try again later. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @throws { BusinessError } 16501001 - The ID of the form to be operated does not exist. * @throws { BusinessError } 16501003 - The form can not be operated by the current application. * @syscap SystemCapability.Ability.Form * @since 9 */ function updateForm(formId: string, formBindingData: formBindingData.FormBindingData, callback: AsyncCallback): void; /** * Update a specified form. * Client to communication with FormManagerService. * @param { string } formId - Indicates the form ID. * @param { formBindingData.FormBindingData } formBindingData - Indicates the form data. * @returns { Promise } The promise returned by the function. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500060 - A service connection error happened, please try again later. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @throws { BusinessError } 16501001 - The ID of the form to be operated does not exist. * @throws { BusinessError } 16501003 - The form can not be operated by the current application. * @syscap SystemCapability.Ability.Form * @since 9 */ function updateForm(formId: string, formBindingData: formBindingData.FormBindingData): Promise; /** * Get info of all forms belonging to current bundle. * Client to communication with FormManagerService. * @param { formInfo.FormInfoFilter } filter - Indicates the requirements the forms that the formInfos belong to have to meet. * @param { AsyncCallback> } callback - The callback is used to return the formInfo. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @syscap SystemCapability.Ability.Form * @since 9 */ function getFormsInfo(filter: formInfo.FormInfoFilter, callback: AsyncCallback>): void; /** * Get infos of all forms belonging to current bundle. * Client to communication with FormManagerService. * @param { AsyncCallback> } callback - The callback is used to return the formInfo. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @syscap SystemCapability.Ability.Form * @since 9 */ function getFormsInfo(callback: AsyncCallback>): void; /** * Get infos of all forms belonging to current bundle. * Client to communication with FormManagerService. * @param { formInfo.FormInfoFilter } filter - Indicates the requirements the forms that the formInfos belong to have to meet. * @returns { Promise> } Returns the formInfo. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @syscap SystemCapability.Ability.Form * @since 9 */ function getFormsInfo(filter?: formInfo.FormInfoFilter): Promise>; /** * Request to publish a form to the form host. * @param { Want } want - The want of the form to publish. * @param { formBindingData.FormBindingData } formBindingData - Indicates the form data. * @param { AsyncCallback } callback - The callback is used to return the form id. * @throws { BusinessError } 202 - The application is not a system application. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @syscap SystemCapability.Ability.Form * @systemapi * @since 9 */ function requestPublishForm(want: Want, formBindingData: formBindingData.FormBindingData, callback: AsyncCallback): void; /** * Request to publish a form to the form host. * @param { Want } want - The want of the form to publish. * @param { AsyncCallback } callback - The callback is used to return the form id. * @throws { BusinessError } 202 - The application is not a system application. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @syscap SystemCapability.Ability.Form * @systemapi * @since 9 */ function requestPublishForm(want: Want, callback: AsyncCallback): void; /** * Request to publish a form to the form host. * @param { Want } want - The want of the form to publish. * @param { formBindingData.FormBindingData } formBindingData - Indicates the form data. * @returns { Promise } Returns the form id. * @throws { BusinessError } 202 - The application is not a system application. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16500100 - Failed to obtain the configuration information. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @syscap SystemCapability.Ability.Form * @systemapi * @since 9 */ function requestPublishForm(want: Want, formBindingData?: formBindingData.FormBindingData): Promise; /** * Check if the request of publishing a form is supported by the host * @param { AsyncCallback } callback - The callback is used to return true if the request is supported. * @throws { BusinessError } 202 - If the application is not a system application. * @throws { BusinessError } 401 - If the input parameter is not valid parameter. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @syscap SystemCapability.Ability.Form * @systemapi * @since 9 */ function isRequestPublishFormSupported(callback: AsyncCallback): void; /** * Check if the request of publishing a form is supported by the host * @returns { Promise } Returns true if the request is supported. * @throws { BusinessError } 202 - If the application is not a system application. * @throws { BusinessError } 16500050 - An IPC connection error happened. * @throws { BusinessError } 16501000 - An internal functional error occurred. * @syscap SystemCapability.Ability.Form * @systemapi * @since 9 */ function isRequestPublishFormSupported(): Promise; } export default formProvider;