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

com.ibm.cfenv.spring.boot.watson.CompareComplyCfEnvProcessor 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 CompareComplyCfEnvProcessor implements CfEnvProcessor {

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

    public CompareComplyCfEnvProcessor() {
        LOG.info("WatsonCompareComplyCfEnvProcessor built");
    }

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

    @Override
    public CfEnvProcessorProperties getProperties() {
        return CfEnvProcessorProperties.builder().propertyPrefixes("watson_vision_combined")
                .serviceName("Watson_Vision_Combined").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.compare-comply.url", cfCredentials.getUri("http"));
        properties.put("watson.compare-comply.iam-api-key", cfCredentials.getString("apikey"));
        properties.put("watson.compare-comply.versionDate", watsonVersion);

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy