mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-14 07:43:40 +01:00
made serializable
Former-commit-id: e826b6b05017739cc35641dcdd882e4c62946a12
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
package org.owasp.dependencycheck.analyzer;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.Serializable;
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.net.URLEncoder;
|
||||
import java.util.ArrayList;
|
||||
@@ -56,7 +57,12 @@ import org.owasp.dependencycheck.utils.DependencyVersionUtil;
|
||||
*
|
||||
* @author Jeremy Long <jeremy.long@owasp.org>
|
||||
*/
|
||||
public class CPEAnalyzer implements Analyzer {
|
||||
public class CPEAnalyzer implements Analyzer, Serializable {
|
||||
|
||||
/**
|
||||
* The serial version uid.
|
||||
*/
|
||||
static final long serialVersionUID = 8321724465936326935L;
|
||||
|
||||
/**
|
||||
* The Logger.
|
||||
|
||||
Reference in New Issue
Block a user