if (epr == null) {
throw new Exception("epr is null");
}
final ReferencePropertiesType properties = epr.getProperties();
if (properties == null) {
throw new Exception("epr properties are null");
}
final QName ensembleKeyQName =
Constants_GT4_0.ENSEMBLE_RESOURCE_KEY_QNAME;
final MessageElement elem = properties.get(ensembleKeyQName);
if (elem == null) {
throw new Exception("key not present in EPR");
}
final String id = elem.getValue();