Class GrokAssemblyProcessor
- java.lang.Object
-
- org.owasp.dependencycheck.utils.processing.Processor<java.io.InputStream>
-
- org.owasp.dependencycheck.processing.GrokAssemblyProcessor
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,java.lang.Runnable
public class GrokAssemblyProcessor extends Processor<java.io.InputStream>
Processor for the output of GrokAssembly.exe.- Author:
- Jeremy Long
-
-
Constructor Summary
Constructors Constructor Description GrokAssemblyProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Throws any exceptions that occurred during processing.AssemblyData
getAssemblyData()
Returns the assembly data.void
run()
-
Methods inherited from class org.owasp.dependencycheck.utils.processing.Processor
addSuppressedExceptions, getInput, setInput
-
-
-
-
Method Detail
-
getAssemblyData
public AssemblyData getAssemblyData()
Returns the assembly data.- Returns:
- the assembly data
-
run
public void run()
-
close
public void close() throws GrokParseException
Throws any exceptions that occurred during processing.- Throws:
GrokParseException
- thrown if there is an error parsing the output of GrokAssembly
-
-