if (connector == null) {
throw new IllegalStateException("requestor connector not there");
}
try {
LinkingSupport service = (LinkingSupport) connector;
service.showXLinks(xLinkObjects.toArray(new XLinkObject[xLinkObjects.size()]));
} catch (ClassCastException e) {
throw new DomainNotLinkableException();
}
}