moved the Confidence enumeration out of the Evidence object

Former-commit-id: b7948c1c6a542d1777347974983abc00c78a6102
This commit is contained in:
Jeremy Long
2014-01-17 20:10:45 -05:00
parent c9f80db3c6
commit 2725d32c33

View File

@@ -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
}