.getProperties().iterator();
while (iterProperties.hasNext()) {
eu.planets_project.services.datatypes.Property property = iterProperties
.next();
if (property.getUri() != null) {
detailEntries.add(new DetailEntry(
DOJCRConstants.PREMIS_EVENT_PROPERTY_URI, property
.getUri().toString()));
}
detailEntries.add(new DetailEntry(
DOJCRConstants.PREMIS_EVENT_PROPERTY_NAME, property
.getName()));
detailEntries.add(new DetailEntry(
DOJCRConstants.PREMIS_EVENT_PROPERTY_VALUE, property
.getValue()));
detailEntries.add(new DetailEntry(
DOJCRConstants.PREMIS_EVENT_PROPERTY_DESCRIPTION, property
.getDescription()));
detailEntries.add(new DetailEntry(
DOJCRConstants.PREMIS_EVENT_PROPERTY_UNIT, property
.getUnit()));
detailEntries.add(new DetailEntry(
DOJCRConstants.PREMIS_EVENT_PROPERTY_TYPE, property
.getType()));
}
}