return 0;
final String score = getProperty(truster, trustee, "Score");
if(score.equals("null"))
throw new NotInTrustTreeException(truster, trustee);
final int value = Integer.parseInt(score);
mWoTCache.putScore(truster, trustee, value);
return value;
}