mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-18 23:34:15 +01:00
added Identifier confidence for issue #35
Former-commit-id: d5203193264c25d3a24b83cd63779fd2e4b42b36
This commit is contained in:
@@ -48,6 +48,27 @@ public class Identifier implements Comparable<Identifier> {
|
|||||||
this(type, value, url);
|
this(type, value, url);
|
||||||
this.description = description;
|
this.description = description;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Confidence confidence;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the value of confidence
|
||||||
|
*
|
||||||
|
* @return the value of confidence
|
||||||
|
*/
|
||||||
|
public Confidence getConfidence() {
|
||||||
|
return confidence;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the value of confidence
|
||||||
|
*
|
||||||
|
* @param confidence new value of confidence
|
||||||
|
*/
|
||||||
|
public void setConfidence(Confidence confidence) {
|
||||||
|
this.confidence = confidence;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The value of the identifier
|
* The value of the identifier
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user