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

org.apache.camel.component.ganglia.GangliaEndpointUriFactory Maven / Gradle / Ivy

There is a newer version: 3.16.0
Show newest version
/* Generated by camel build tools - do NOT edit this file! */
package org.apache.camel.component.ganglia;

import java.net.URISyntaxException;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import org.apache.camel.spi.EndpointUriFactory;

/**
 * Generated by camel build tools - do NOT edit this file!
 */
public class GangliaEndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport implements EndpointUriFactory {

    private static final String BASE = ":host:port";

    private static final Set PROPERTY_NAMES;
    private static final Set SECRET_PROPERTY_NAMES;
    static {
        Set props = new HashSet<>(15);
        props.add("metricName");
        props.add("prefix");
        props.add("tmax");
        props.add("spoofHostname");
        props.add("units");
        props.add("slope");
        props.add("type");
        props.add("ttl");
        props.add("dmax");
        props.add("mode");
        props.add("groupName");
        props.add("lazyStartProducer");
        props.add("port");
        props.add("host");
        props.add("wireFormat31x");
        PROPERTY_NAMES = Collections.unmodifiableSet(props);
        SECRET_PROPERTY_NAMES = Collections.emptySet();
    }

    @Override
    public boolean isEnabled(String scheme) {
        return "ganglia".equals(scheme);
    }

    @Override
    public String buildUri(String scheme, Map properties, boolean encode) throws URISyntaxException {
        String syntax = scheme + BASE;
        String uri = syntax;

        Map copy = new HashMap<>(properties);

        uri = buildPathParameter(syntax, uri, "host", "239.2.11.71", false, copy);
        uri = buildPathParameter(syntax, uri, "port", 8649, false, copy);
        uri = buildQueryParameters(uri, copy, encode);
        return uri;
    }

    @Override
    public Set propertyNames() {
        return PROPERTY_NAMES;
    }

    @Override
    public Set secretPropertyNames() {
        return SECRET_PROPERTY_NAMES;
    }

    @Override
    public boolean isLenientProperties() {
        return false;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy