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

org.apache.camel.component.context.QualifiedContextComponent Maven / Gradle / Ivy

Go to download

Camel Context component to expose CamelContext objects as a black box Component for use in other routes

There is a newer version: 2.25.4
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF 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 org.apache.camel.component.context;

import java.util.Map;

import org.apache.camel.Component;
import org.apache.camel.Endpoint;
import org.apache.camel.ResolveEndpointFailedException;
import org.apache.camel.impl.DefaultComponent;
import org.apache.camel.util.ObjectHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Supports the explicit and verbose URIs of the form context:camelContextId:someEndpoint to access
 * a local endpoint inside an external {@link org.apache.camel.CamelContext}.
 * 

* Typically there's no need to use this level of verbosity, you can just use camelContextId:someEndpoint */ public class QualifiedContextComponent extends DefaultComponent { private static final Logger LOG = LoggerFactory.getLogger(QualifiedContextComponent.class); @Override protected Endpoint createEndpoint(String uri, String remaining, Map parameters) throws Exception { String splitURI[] = ObjectHelper.splitOnCharacter(remaining, ":", 2); if (splitURI[1] != null) { String contextId = splitURI[0]; String localEndpoint = splitURI[1]; Component component = getCamelContext().getComponent(contextId); if (component != null) { LOG.debug("Attempting to create local endpoint: {} inside the component: {}", localEndpoint, component); Endpoint endpoint = component.createEndpoint(localEndpoint); if (endpoint == null) { // throw the exception tell we cannot find an then endpoint from the given context throw new ResolveEndpointFailedException("Cannot create a endpoint with uri" + localEndpoint + " for the CamelContext Component " + contextId); } else { return endpoint; } } else { throw new ResolveEndpointFailedException("Cannot create the camel context component for context " + contextId); } } else { // the uri is wrong throw new ResolveEndpointFailedException("The uri " + remaining + "from camel context component is wrong"); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy