added Identifier confidence for issue #35

Former-commit-id: d5203193264c25d3a24b83cd63779fd2e4b42b36
This commit is contained in:
Jeremy Long
2014-01-17 20:22:19 -05:00
parent b4664f85f0
commit b2f688a032

View File

@@ -48,6 +48,27 @@ public class Identifier implements Comparable<Identifier> {
this(type, value, url);
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
*/