DeleteResult
Inheritance: java.lang.Object
All Implemented Interfaces: com.groupdocs.signature.domain.IResult
public class DeleteResult implements IResult
Result of signature(s) deletion from the document.
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 updated document size. |
getSucceeded() | List of successfully deleted signatures BaseSignature. |
getFailed() | List of signatures that were not deleted BaseSignature. |
getProcessingTime()
public final long getProcessingTime()
Returns the execution time of the process in milliseconds.
Returns: long
getTotalSignatures()
public final int getTotalSignatures()
Returns the total processed signatures.
Returns: int
getSourceDocumentSize()
public final long getSourceDocumentSize()
Returns source document size.
Returns: long
getDestinDocumentSize()
public final long getDestinDocumentSize()
Returns updated document size.
Returns: long
getSucceeded()
public final List<BaseSignature> getSucceeded()
List of successfully deleted signatures BaseSignature.
Returns: java.util.List<com.groupdocs.signature.domain.signatures.BaseSignature>
getFailed()
public final List<BaseSignature> getFailed()
List of signatures that were not deleted BaseSignature.
Returns: java.util.List<com.groupdocs.signature.domain.signatures.BaseSignature>