| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AnalysisPhase |
|
| 0.0;0 |
| 1 | /* | |
| 2 | * This file is part of dependency-check-core. | |
| 3 | * | |
| 4 | * Dependency-check-core is free software: you can redistribute it and/or modify it | |
| 5 | * under the terms of the GNU General Public License as published by the Free | |
| 6 | * Software Foundation, either version 3 of the License, or (at your option) any | |
| 7 | * later version. | |
| 8 | * | |
| 9 | * Dependency-check-core is distributed in the hope that it will be useful, but | |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | |
| 12 | * details. | |
| 13 | * | |
| 14 | * You should have received a copy of the GNU General Public License along with | |
| 15 | * dependency-check-core. If not, see http://www.gnu.org/licenses/. | |
| 16 | * | |
| 17 | * Copyright (c) 2012 Jeremy Long. All Rights Reserved. | |
| 18 | */ | |
| 19 | package org.owasp.dependencycheck.analyzer; | |
| 20 | ||
| 21 | /** | |
| 22 | * An enumeration defining the phases of analysis. | |
| 23 | * | |
| 24 | * @author Jeremy Long (jeremy.long@owasp.org) | |
| 25 | */ | |
| 26 | 162 | public enum AnalysisPhase { |
| 27 | ||
| 28 | /** | |
| 29 | * Initialization phase. | |
| 30 | */ | |
| 31 | 1 | INITIAL, |
| 32 | /** | |
| 33 | * Information collection phase. | |
| 34 | */ | |
| 35 | 1 | INFORMATION_COLLECTION, |
| 36 | /** | |
| 37 | * Pre identifier analysis phase. | |
| 38 | */ | |
| 39 | 1 | PRE_IDENTIFIER_ANALYSIS, |
| 40 | /** | |
| 41 | * Identifier analysis phase. | |
| 42 | */ | |
| 43 | 1 | IDENTIFIER_ANALYSIS, |
| 44 | /** | |
| 45 | * Post identifier analysis phase. | |
| 46 | */ | |
| 47 | 1 | POST_IDENTIFIER_ANALYSIS, |
| 48 | /** | |
| 49 | * Pre finding analysis phase. | |
| 50 | */ | |
| 51 | 1 | PRE_FINDING_ANALYSIS, |
| 52 | /** | |
| 53 | * Finding analysis phase. | |
| 54 | */ | |
| 55 | 1 | FINDING_ANALYSIS, |
| 56 | /** | |
| 57 | * Post analysis phase. | |
| 58 | */ | |
| 59 | 1 | POST_FINDING_ANALYSIS, |
| 60 | /** | |
| 61 | * The final analysis phase. | |
| 62 | */ | |
| 63 | 1 | FINAL |
| 64 | } |