mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-20 00:04:27 +01:00
moved the Confidence enumeration out of the Evidence object
Former-commit-id: b7948c1c6a542d1777347974983abc00c78a6102
This commit is contained in:
@@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* This file is part of dependency-check-core.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*
|
||||||
|
* Copyright (c) 2012 Jeremy Long. All Rights Reserved.
|
||||||
|
*/
|
||||||
|
package org.owasp.dependencycheck.dependency;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A confidence enumeration.
|
||||||
|
*
|
||||||
|
* @author Jeremy Long <jeremy.long@owasp.org>
|
||||||
|
*/
|
||||||
|
public enum Confidence {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* High confidence evidence.
|
||||||
|
*/
|
||||||
|
HIGHEST,
|
||||||
|
/**
|
||||||
|
* High confidence evidence.
|
||||||
|
*/
|
||||||
|
HIGH,
|
||||||
|
/**
|
||||||
|
* Medium confidence evidence.
|
||||||
|
*/
|
||||||
|
MEDIUM,
|
||||||
|
/**
|
||||||
|
* Low confidence evidence.
|
||||||
|
*/
|
||||||
|
LOW
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user