IResult
Leave feedback
On this page
public interface IResult
Common interface for signature process result.
| Method | Description |
|---|---|
| getProcessingTime() | Returns the execution time of the process in milliseconds |
| getTotalSignatures() | Returns the total processed signatures |
| getSourceDocumentSize() | Returns source document size |
| getDestinDocumentSize() | Returns destination document size |
| getSucceeded() | List of successfully processed signatures BaseSignature. |
| getFailed() | List of signatures that were not processed BaseSignature. |
public abstract long getProcessingTime()
Returns the execution time of the process in milliseconds
Returns: long
public abstract int getTotalSignatures()
Returns the total processed signatures
Returns: int
public abstract long getSourceDocumentSize()
Returns source document size
Returns: long
public abstract long getDestinDocumentSize()
Returns destination document size
Returns: long
public abstract List<BaseSignature> getSucceeded()
List of successfully processed signatures BaseSignature.
Returns: java.util.List<com.groupdocs.signature.domain.signatures.BaseSignature>
public abstract List<BaseSignature> getFailed()
List of signatures that were not processed BaseSignature.
Returns: java.util.List<com.groupdocs.signature.domain.signatures.BaseSignature>
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.