mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-04-01 06:33:46 +02:00
added pre finding and post finding phases
Former-commit-id: 7a5794735ad91a44f0c281c551fe7b8a79a9cdff
This commit is contained in:
@@ -26,31 +26,39 @@ package org.owasp.dependencycheck.analyzer;
|
|||||||
public enum AnalysisPhase {
|
public enum AnalysisPhase {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The first phase of analysis.
|
* Initialization phase.
|
||||||
*/
|
*/
|
||||||
INITIAL,
|
INITIAL,
|
||||||
/**
|
/**
|
||||||
* The second phase of analysis.
|
* Information collection phase.
|
||||||
*/
|
*/
|
||||||
INFORMATION_COLLECTION,
|
INFORMATION_COLLECTION,
|
||||||
/**
|
/**
|
||||||
* The third phase of analysis.
|
* Pre identifier analysis phase.
|
||||||
*/
|
*/
|
||||||
PRE_IDENTIFIER_ANALYSIS,
|
PRE_IDENTIFIER_ANALYSIS,
|
||||||
/**
|
/**
|
||||||
* The fourth phase of analysis.
|
* Identifier analysis phase.
|
||||||
*/
|
*/
|
||||||
IDENTIFIER_ANALYSIS,
|
IDENTIFIER_ANALYSIS,
|
||||||
/**
|
/**
|
||||||
* The fifth phase of analysis.
|
* Post identifier analysis phase.
|
||||||
*/
|
*/
|
||||||
POST_IDENTIFIER_ANALYSIS,
|
POST_IDENTIFIER_ANALYSIS,
|
||||||
/**
|
/**
|
||||||
* The sixth phase of analysis.
|
* Pre finding analysis phase.
|
||||||
|
*/
|
||||||
|
PRE_FINDING_ANALYSIS,
|
||||||
|
/**
|
||||||
|
* Finding analysis phase.
|
||||||
*/
|
*/
|
||||||
FINDING_ANALYSIS,
|
FINDING_ANALYSIS,
|
||||||
/**
|
/**
|
||||||
* The seventh and final phase of analysis.
|
* Post analysis phase.
|
||||||
|
*/
|
||||||
|
POST_FINDING_ANALYSIS,
|
||||||
|
/**
|
||||||
|
* The final analysis phase.
|
||||||
*/
|
*/
|
||||||
FINAL
|
FINAL
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user