Package org.mifosplatform.infrastructure.hooks.domain

Examples of org.mifosplatform.infrastructure.hooks.domain.HookConfiguration


      smsProviderData.setUrl(null);
      smsProviderData.setEndpoint(System.getProperty("baseUrl"));
      smsProviderData.setTenantId(tenantIdentifier);
      smsProviderData.setMifosToken(authToken);
      apiKey = service.sendSmsBridgeConfigRequest(smsProviderData);
      final HookConfiguration apiKeyEntry = HookConfiguration.createNew(
          hook, "string", apiKeyName, apiKey);
      this.hookConfigurationRepository.save(apiKeyEntry);
    }

    if (apiKey != null && !apiKey.equals("")) {
View Full Code Here


    for (final Entry<String, String> configEntry : hookConfig.entrySet()) {
      for (final Schema field : fields) {
        final String fieldName = field.getFieldName();
        if (fieldName.equalsIgnoreCase(configEntry.getKey())) {

          final HookConfiguration config = HookConfiguration
              .createNewWithoutHook(field.getFieldType(),
                  configEntry.getKey(),
                  configEntry.getValue());
          configuration.add(config);
          break;
View Full Code Here

TOP

Related Classes of org.mifosplatform.infrastructure.hooks.domain.HookConfiguration

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.