if (conversions != null && !conversions.isEmpty())
{
// This function should be returning the only object
if (conversions.size() > 1)
{
throw new NonUniqueObjectException("There is more than one conversion!",
image.getId(),
VirtualImageConversion.class.getSimpleName());
}
return conversions.get(0);
}