353354355356357358359
public void saveIdentityLink(IdentityLink identityLink) { commandExecutor.execute(new SaveIdentityLinkCmd(identityLink)); } public void deleteIdentityLink(String linkId) { commandExecutor.execute(new DeleteIdentityLinkCmd(linkId)); }
358359360361362363364365
commandExecutor.execute(new DeleteIdentityLinkCmd(linkId)); } public void deleteIdentityLink(Collection<String> linkIds) { for (String linkId : linkIds) { commandExecutor.execute(new DeleteIdentityLinkCmd(linkId)); } }