IResult
public interface IResult
Common interface for signature process result.
Methods
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. |
getProcessingTime()
public abstract long getProcessingTime()
Returns the execution time of the process in milliseconds
Returns: long
getTotalSignatures()
public abstract int getTotalSignatures()
Returns the total processed signatures
Returns: int
getSourceDocumentSize()
public abstract long getSourceDocumentSize()
Returns source document size
Returns: long
getDestinDocumentSize()
public abstract long getDestinDocumentSize()
Returns destination document size
Returns: long
getSucceeded()
public abstract List<BaseSignature> getSucceeded()
List of successfully processed signatures BaseSignature.
Returns: java.util.List<com.groupdocs.signature.domain.signatures.BaseSignature>
getFailed()
public abstract List<BaseSignature> getFailed()
List of signatures that were not processed BaseSignature.
Returns: java.util.List<com.groupdocs.signature.domain.signatures.BaseSignature>