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

io.fabric8.mq.camel.AMQConfiguration Maven / Gradle / Ivy

There is a newer version: 2.2.100
Show newest version
/**
 *  Copyright 2005-2015 Red Hat, Inc.
 *
 *  Red Hat licenses this file to you under the Apache License, version
 *  2.0 (the "License"); you may not use this file except in compliance
 *  with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 *  implied.  See the License for the specific language governing
 *  permissions and limitations under the License.
 */
package io.fabric8.mq.camel;

import io.fabric8.mq.core.MQs;
import io.fabric8.utils.Strings;
import io.fabric8.utils.Systems;
import org.apache.activemq.camel.component.ActiveMQConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * A configuration object for the {@link AMQComponent} which uses Kubernetes service wiring
 * to find the correct ActiveMQ broker service to communicate with
 */
public class AMQConfiguration extends ActiveMQConfiguration {
    private static final transient Logger LOG = LoggerFactory.getLogger(AMQConfiguration.class);

    private String serviceName;
    private String failoverUrlParameters;

    public AMQConfiguration() {
    }

    public AMQConfiguration(AMQComponent component) {
        super.setActiveMQComponent(component);
    }

    @Override
    public String getBrokerURL() {
        return MQs.getBrokerURL(getServiceName(), getFailoverUrlParameters());
    }

    @Override
    public void setBrokerURL(String brokerURL) {
        throw new UnsupportedOperationException("brokerURL property cannot be modified for this component. Please modify the serviceName instead!");
    }

    public String getServiceName() {
        return serviceName;
    }

    /**
     * Sets the Kubernetes service name used to resolve against the $serviceName_SERVICE_HOST and
     * $serviceName_SERVICE_PORT environment variables to find the broker group to connect t.
     */
    public void setServiceName(String serviceName) {
        this.serviceName = serviceName;
    }

    public String getFailoverUrlParameters() {
        return failoverUrlParameters;
    }

    /**
     * Allows any failover parameters to be specified after the failover://host:port/ part of the brokerURL.
     */
    public void setFailoverUrlParameters(String failoverUrlParameters) {
        this.failoverUrlParameters = failoverUrlParameters;
    }


    // TODO if ever ActiveMQConfiguration provides a template method
    // to create a vanilla ActiveMQConnectionFactory before its wrapped in pooling
    // we could override that here!
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy