@SuppressWarnings("unchecked")
List<UpdateDescriptor> availableUpdate(UpdateMessage um) {
final ArtifactDescriptor ad = um.artifactDescriptor();
final UpdateDescriptor ud = uds.get(ad);
return ud.updateVersion().equals(ad.version())
? Collections.EMPTY_LIST
: Collections.singletonList(ud);
}
UpdateMessage updateNotice(UpdateMessage um, String uv) {