You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods:
import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *
* This is an example of ILogger implementation, tracking count of error messages. *
*/ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....Close Navigation Products GroupDocs.Total Product Family GroupDocs...
This section explains how to load document from FTP with GroupDocs.Signature API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...
This article shows how to receive digital certificates properties over Document Info method....Close Navigation Products GroupDocs.Total Product Family GroupDocs...
Let's quickly review the step-by-step procedure to convert Text to HTML in Java and learn how to write the Text to HTML Java code for converting documents....Find Answers by API GroupDocs.Total Product Family GroupDocs...
This short guide provides thorough instructions on how to create a Barcode for a PDF using Java and how to add Barcode signature to PDF in Java....Find Answers by API GroupDocs.Total Product Family GroupDocs...
Quickly learn how to convert MSG to HTML using Java without relying on external tools. Furthermore, we will furnish you with a code to export MSG to HTML in Java....Find Answers by API GroupDocs.Total Product Family GroupDocs...
This tutorial illustrates the procedure of how to convert JPG to PPTX using Java. Additionally, a code example will be provided to export JPG to PPTX using Java....Find Answers by API GroupDocs.Total Product Family GroupDocs...
This article describes the workflow to convert MHTML to JPG in Java and provides a working code to show the implementation of Java MHTML to JPG converter capability....Find Answers by API GroupDocs.Total Product Family GroupDocs...
This article provides a step-by-step procedure to convert PDF to Presentation in Java and a sample application to convert PDF to PowerPoint presentation using Java....Find Answers by API GroupDocs.Total Product Family GroupDocs...