public void validateSetPublisherAssertions(EntityManager em, Holder<List<org.uddi.api_v3.PublisherAssertion>> body) throws DispositionReportFaultMessage {
// No null input
if (body == null)
throw new FatalErrorException(new ErrorMessage("errors.NullInput"));
// Assertion list can be null or empty - it signifies that publisher is deleting all their assertions
List<org.uddi.api_v3.PublisherAssertion> entityList = body.value;
if (entityList != null && entityList.size() > 0) {