19 package org.turro.matching;
21 import javax.persistence.Id;
22 import javax.persistence.IdClass;
23 import javax.persistence.MappedSuperclass;
30 @IdClass(MatchingEntityPK.class)
33 @Id
private String entityPath;
34 @Id
private String relatedPath;
35 @Id
private String concept;
37 private double matching;
46 this.entityPath = entityPath;
56 this.relatedPath = relatedPath;
66 this.concept = concept;
76 this.matching = matching;
void setRelatedPath(String relatedPath)
void setConcept(String concept)
void setMatching(double matching)
void setEntityPath(String entityPath)