in java/cose/CborUtil.java [65:71]
public static Map asMap(DataItem dataItem) throws CborException {
if (dataItem.getMajorType() != MajorType.MAP) {
throw new CborException(
String.format("Expected a map, got %s", dataItem.getMajorType().name()));
}
return (Map) dataItem;
}