Package org.mifosplatform.infrastructure.hooks.processor

Examples of org.mifosplatform.infrastructure.hooks.processor.HookProcessor


    final List<Hook> hooks = this.hookReadPlatformService
            .retrieveHooksByEvent(hookEventSource.getEntityName(),
                    hookEventSource.getActionName());

    for (final Hook hook : hooks) {
      final HookProcessor processor = this.hookProcessorProvider
          .getProcessor(hook);
      processor.process(hook, appUser, payload, entityName, actionName,
          tenantIdentifier, authToken);
    }
  }
View Full Code Here

TOP

Related Classes of org.mifosplatform.infrastructure.hooks.processor.HookProcessor

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.