File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
kernel/src/main/java/com/itextpdf/kernel Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,15 @@ This file is part of the iText (R) project.
43
43
*/
44
44
package com .itextpdf .kernel ;
45
45
46
+ import java .io .Serializable ;
47
+
46
48
/**
47
49
* Describes an iText 7 add on. An add on should register itself to a PdfDocument object if it
48
50
* wants to be included in the debugging information.
49
51
*/
50
- public class ProductInfo {
52
+ public class ProductInfo implements Serializable {
53
+ private static final long serialVersionUID = 2410734474798313936L ;
54
+
51
55
private String name ;
52
56
private int major ;
53
57
private int minor ;
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ This file is part of the iText (R) project.
45
45
46
46
import com .itextpdf .kernel .ProductInfo ;
47
47
48
+ import java .io .Serializable ;
48
49
import java .util .Collection ;
49
50
import java .util .HashSet ;
50
51
import java .util .Set ;
@@ -54,7 +55,8 @@ This file is part of the iText (R) project.
54
55
* was involved in the creation of a certain PDF file. This information can then be used to log to the
55
56
* logger or to the file.
56
57
*/
57
- public class FingerPrint {
58
+ public class FingerPrint implements Serializable {
59
+ private static final long serialVersionUID = 1378019250639368423L ;
58
60
59
61
private Set <ProductInfo > productInfoSet ;
60
62
You can’t perform that action at this time.
0 commit comments