private static void _invalidate(long companyId) { for (SPI spi : MPIHelperUtil.getSPIs()) { try { RegistrationReference registrationReference = spi.getRegistrationReference(); IntrabandRPCUtil.execute(registrationReference, new InvalidateProcessCallable(companyId)); } catch (Exception e) { _log.error("Unable to invalidate SPI " + spi + " for company " + companyId, e); } } }