throw new FatalErrorException(new ErrorMessage("errors.NullInput"));
// No null or empty list
List<org.uddi.api_v3.BusinessService> entityList = body.getBusinessService();
if (entityList == null || entityList.size() == 0)
throw new ValueNotAllowedException(new ErrorMessage("errors.saveservice.NoInput"));
for (org.uddi.api_v3.BusinessService entity : entityList) {
// Entity specific data validation
validateBusinessService(em, entity, null, config);
}