//
// Looking for the UUIDBoxMetadataNode
//
// //
final List<IIOMetadataNode> uuidBoxMetadataNodes = ((JP2KStreamMetadata) metadata).searchOccurrencesNode(UUIDBox.BOX_TYPE);
UUIDBoxMetadataNode geoJP2uuid = null;
UUIDBoxMetadataNode worldBoxuuid = null;
if (uuidBoxMetadataNodes != null && !uuidBoxMetadataNodes.isEmpty()){
for (IIOMetadataNode node: uuidBoxMetadataNodes){
if (node instanceof UUIDBoxMetadataNode) {
final UUIDBoxMetadataNode uuid = (UUIDBoxMetadataNode) node;
final byte[] id = uuid.getUuid();
if (isGeoJP2(id)) {
geoJP2uuid = uuid;
continue;
}