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