ProcessLog
Inheritance: java.lang.Object
public final class ProcessLog
Represents document process details.
Methods
Method | Description |
---|---|
getDate() | Get the process date and time. |
getType() | Get the process type. |
getMessage() | Get the process description. |
getSucceeded() | Quantity of successfully processed signatures. |
getFailed() | Quantity of signatures that failed during processing. |
getSignatures() | The list of successfully processed signatures. |
getDate()
public final Date getDate()
Get the process date and time.
Returns: java.util.Date
getType()
public final int getType()
Get the process type.
Returns: int
getMessage()
public final String getMessage()
Get the process description.
Returns: java.lang.String
getSucceeded()
public final int getSucceeded()
Quantity of successfully processed signatures.
Returns: int
getFailed()
public final int getFailed()
Quantity of signatures that failed during processing.
Returns: int
getSignatures()
public final List<BaseSignature> getSignatures()
The list of successfully processed signatures.
Returns: java.util.List<com.groupdocs.signature.domain.signatures.BaseSignature>