return entity;
}
public GenericConstraint getConstraint(String packageid, String id, String version) {
GenericConstraint constraint = null;
try {
constraint = constraints.get(packageid).getConstraint(id, version);
} catch (NullPointerException ex) {
throw new RuntimeException("Constraint package not found: " + id + ":" + version, ex);
}