自訂草稿和提交資料服務 customizing-draft-and-submission-data-services
概觀 overview
AEM Forms可讓使用者將最適化表單儲存為草稿。 草稿功能可讓使用者選擇維護進行中表單。 然後,使用者可以隨時從任何裝置填妥並提交表單。
依預設,AEM Forms會儲存與發佈執行個體上草稿和提交相關聯的使用者資料,位於 /content/forms/fp
節點。
不過,AEM Forms入口網站元件提供的資料服務可讓您自訂為草稿和提交儲存使用者資料的實作。 例如,您可以將資料儲存在貴組織目前實作的資料存放區中。
若要自訂使用者資料的儲存,您必須實作 草稿資料 和 提交資料 服務。
必備條件 prerequisites
- 啟用 Forms入口網站元件
- 建立 表單入口網頁
- 啟用 forms portal適用性表單
- 學習 自訂儲存的實作詳細資訊
草稿資料服務 draft-data-service
若要自訂使用者草稿資料的儲存,您必須提供 DraftAFDataService
介面。
介面的下列程式碼範例中提供方法及其引數的說明:
public interface DraftAFDataService {
/**
* Deletes the user data stored against the ID passed as the argument
*
* @param draftDataID
* @return status for the just occurred delete draft UserData operation
* @throws FormsPortalException
*/
public Boolean deleteAFDraftUserData (String draftDataID) throws FormsPortalException;
/**
* Saves user data provided in the argument map
*
* @param draftUserDataMap contains Form Data (key - "guideState"), Adaptive Form Name (Key - "guideName"), and Draft DataID (Key - "userDataID") in case of update
* @return userData ID would be returned which needs to be saved in metadata node
* @throws FormsPortalException
*/
public String saveAFUserData (Map<String, Object> draftUserDataMap) throws FormsPortalException;
/**
* Gets the user data stored against the ID passed as the argument
*
* @param Draft DataID
* @return guideState (which would then be populated in adaptive form to reload the draft) which is stored against draftDataID
* @throws FormsPortalException
*/
public byte[] getAFDraftUserData(String draftDataID) throws FormsPortalException;
/**
* Saves the attachments for current adaptive form instance
*
* @param attachmentsBytes would expect byte array of the attachment to be saved
* @return id for the attachment just saved (so that it could be retrieved later)
* @throws FormsPortalException
*/
public String saveAttachments(byte[] attachmentBytes) throws FormsPortalException;
}
提交資料服務 submission-data-service
若要自訂使用者提交資料的儲存,您必須提供 SubmittedAFDataService
介面。
介面的下列程式碼範例中提供方法及其引數的說明:
public interface SubmittedAFDataService {
/**
* Submits the user data passed in argument map
*
* @param submittedAFUserdataMap contains Form Data (key - "guideState"), Adaptive Form Name (Key - "guideName"), and Draft DataID (Key - "userDataID")
* @return userData ID is returned that needs to be saved in the metadata node
* @throws FormsPortalException
*/
public String submitAFUserData (Map<String, Object> submittedAFUserdataMap) throws FormsPortalException;
/**
* Gets the user data stored against the ID passed as argument
*
* @param submitDataID
* @return guideState which would be used to open DOR
* @throws FormsPortalException
*/
public byte[] getSubmittedAFUSerData(String submitDataID) throws FormsPortalException;
/**
* Deletes user data stored against the ID passed as argument
*
* @param Submit DataID
* @return status of the delete operation on Submitted User data
* @throws FormsPortalException
*/
public Boolean deleteSubmittedAFUserData(String submitDataID) throws FormsPortalException;
/**
* Submits the attachment bytes passed as argument
*
* @param attachmentsBytes would expect byte array of the attachment to be saved
* @return id for the attachment just saved (so that it could be retrieved later)
* @throws FormsPortalException
*/
public String submitAttachments(Object attachmentBytes) throws FormsPortalException;
}
recommendation-more-help
a6ebf046-2b8b-4543-bd46-42a0d77792da