Package com.founder.fix.fixflow.core.impl.cmd

Examples of com.founder.fix.fixflow.core.impl.cmd.DeleteIdentityLinkCmd


  public void saveIdentityLink(IdentityLink identityLink) {
    commandExecutor.execute(new SaveIdentityLinkCmd(identityLink));
  }

  public void deleteIdentityLink(String linkId) {
    commandExecutor.execute(new DeleteIdentityLinkCmd(linkId));
  }
View Full Code Here


    commandExecutor.execute(new DeleteIdentityLinkCmd(linkId));
  }

  public void deleteIdentityLink(Collection<String> linkIds) {
    for (String linkId : linkIds) {
      commandExecutor.execute(new DeleteIdentityLinkCmd(linkId));
    }
  }
View Full Code Here

TOP

Related Classes of com.founder.fix.fixflow.core.impl.cmd.DeleteIdentityLinkCmd

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.