/**
* @exception RegistryV3Exception;
*/
public DispositionReport deletePublisherAssertions(String authInfo,
PublisherAssertion[] assertionArray) throws RegistryV3Exception {
DeletePublisherAssertions request = this.objectFactory.createDeletePublisherAssertions();
if (authInfo != null) {
request.setAuthInfo(authInfo);
}
if (assertionArray != null) {
request.getPublisherAssertion().addAll(Arrays.asList(assertionArray));
}
DispositionReport dr = new DispositionReport();
JAXBElement<?> o = execute(this.objectFactory.createDeletePublisherAssertions(request),
this.getPublishURI());