All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.cfenv.spring.boot.watson.ToneAnalyzerCfEnvProcessor Maven / Gradle / Ivy

There is a newer version: 0.0.15
Show newest version
package com.ibm.cfenv.spring.boot.watson;

import io.pivotal.cfenv.core.CfCredentials;
import io.pivotal.cfenv.core.CfService;
import io.pivotal.cfenv.spring.boot.CfEnvProcessor;
import io.pivotal.cfenv.spring.boot.CfEnvProcessorProperties;

import java.util.Map;
import java.util.logging.Logger;

public class ToneAnalyzerCfEnvProcessor implements CfEnvProcessor {

    private static final Logger LOG = Logger.getLogger(ToneAnalyzerCfEnvProcessor.class.getName());

    public ToneAnalyzerCfEnvProcessor() {
        LOG.info("WatsonToneAnalyzerCfEnvProcessor built");
    }

    @Override
    public boolean accept(CfService service) {
        boolean match = service.existsByLabelStartsWith("tone_analyzer");
        LOG.info("Match [" + match + "] to service " + service.toString());
        return match;
    }

    @Override
    public CfEnvProcessorProperties getProperties() {
        return CfEnvProcessorProperties.builder().propertyPrefixes("tone_analyzer").serviceName("Tone_Analyzer")
                .build();
    }

    @Override
    public void process(CfCredentials cfCredentials, Map properties) {
        // set watsonVersion to date of the released watson spring boot starter
        // version 1.0.0 was released on 2019-05-07
        String watsonVersion = "2019-05-07";
        properties.put("watson.tone-analyzer.url", cfCredentials.getUri("http"));
        properties.put("watson.tone-analyzer.iam-api-key", cfCredentials.getString("apikey"));
        properties.put("watson.tone-analyzer.versionDate", watsonVersion);

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy