public interface PendingSignDataService
Modifier and Type | Method and Description |
---|---|
boolean |
deleteAttachment(String attachmentID)
To delete an attachment
|
boolean |
deleteData(String userDataID)
Deletes user data stored against the userDataID
|
byte[] |
getAttachment(String attachmentID)
To get attachment bytes
|
byte[] |
getData(String userDataID)
Gets the user data stored against the ID passed as argument
|
String |
saveAttachment(byte[] attachmentBytes)
Submits the attachment bytes passed as argument
|
String |
saveData(byte[] data)
Save the user data provided as byte array.
|
String |
updateData(String userDataID,
byte[] data)
Update the data blob for the provided user data ID if it is permissible
|
String saveData(byte[] data) throws FormsPortalException
data
- FormsPortalException
String updateData(String userDataID, byte[] data) throws FormsPortalException
userDataID
- data
- FormsPortalException
byte[] getData(String userDataID) throws FormsPortalException
userDataID:
- unique id associated with this user data for this pending sign instanceFormsPortalException
boolean deleteData(String userDataID) throws FormsPortalException
userDataID:
- unique id associated with this user data for this pending sign instanceFormsPortalException
String saveAttachment(byte[] attachmentBytes) throws FormsPortalException
attachmentsBytes:
- would expect byte array of the attachment for this pending sign instanceFormsPortalException
boolean deleteAttachment(String attachmentID) throws FormsPortalException
attachmentID:
- Unique id for this attachmentFormsPortalException
byte[] getAttachment(String attachmentID) throws FormsPortalException
attachmentID:
- unique id for this attachmentFormsPortalException
Copyright © 1982–2023 Adobe Systems Incorporated. All rights reserved.