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....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; /** * <p> * This is an example of ILogger implementation, tracking count of error messages. * </p> */ public class CustomLogger implements ILogger { private ArrayList<String> _errors; private ArrayList<String> _traces; private ArrayList<String> _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList<String>(); _traces = new ArrayList<String>(); _warnings = new ArrayList<String>(); } public void error(String message) { _errors.
This section contains articles with explanation how to create QR-Code electronic signatures and embed into QR-Code custom data object with its serialization and encryption. The examples show how to customize object serialization and encryption....This section contains articles with explanation how to create QR-Code electronic signatures and embed into QR-Code custom data object with its serialization and encryption. The examples show how to customize object serialization and encryption.
The page describes how to load PDF, Word, Excel, PowerPoint documents from URL using GroupDocs.Annotation for .NET....The page describes how to load PDF, Word, Excel, PowerPoint documents from URL using GroupDocs.Annotation for .NET.
The page describes how to load PDF, Word, Excel, PowerPoint documents from stream using GroupDocs.Annotation for Java....The page describes how to load PDF, Word, Excel, PowerPoint documents from stream using GroupDocs.Annotation for Java.
This article demonstrates how to convert file stored in Amazon S3 storage using GroupDocs.Conversion for .NET API....This article demonstrates how to convert file stored in Amazon S3 storage using GroupDocs.Conversion for .NET API.
This article explains how to load PDF, Word, Excel, PowerPoint documents from URL when using GroupDocs.Merger for .NET....This article explains how to load PDF, Word, Excel, PowerPoint documents from URL when using GroupDocs.Merger for .NET.
This article explains how to add text watermark when rendering documents with GroupDocs.Viewer within your Java applications....This article explains how to add text watermark when rendering documents with GroupDocs.Viewer within your Java applications.
Following this guide you will learn how to adjust JPG images quality when rendering documents with Image Viewer by GroupDocs....Following this guide you will learn how to adjust JPG images quality when rendering documents with Image Viewer by GroupDocs.
This article explains how to add password for PDF document with permissions using GroupDocs.Merger for .NET....This article explains how to add password for PDF document with permissions using GroupDocs.Merger for .NET.