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

org.apache.camel.impl.PropertyPlaceholderDelegateRegistry Maven / Gradle / Ivy

There is a newer version: 4.6.0
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.impl;

import java.util.Map;
import java.util.Set;

import org.apache.camel.CamelContext;
import org.apache.camel.spi.Registry;
import org.apache.camel.util.ObjectHelper;

/**
 * A {@link Registry} which delegates to the real registry.
 * 

* This is used to ensure that Camel performs property placeholder resolution on every lookup. * * @version */ public class PropertyPlaceholderDelegateRegistry implements Registry { private final CamelContext context; private final Registry delegate; public PropertyPlaceholderDelegateRegistry(CamelContext context, Registry delegate) { this.context = context; this.delegate = delegate; } public Object lookupByName(String name) { try { // Must avoid attempting placeholder resolution when looking up // the properties component or else we end up in an infinite loop. if (!name.equals("properties")) { name = context.resolvePropertyPlaceholders(name); } return delegate.lookupByName(name); } catch (Exception e) { throw ObjectHelper.wrapRuntimeCamelException(e); } } public T lookupByNameAndType(String name, Class type) { try { // Must avoid attempting placeholder resolution when looking up // the properties component or else we end up in an infinite loop. if (!name.equals("properties")) { name = context.resolvePropertyPlaceholders(name); } return delegate.lookupByNameAndType(name, type); } catch (Exception e) { throw ObjectHelper.wrapRuntimeCamelException(e); } } public Map findByTypeWithName(Class type) { return delegate.findByTypeWithName(type); } public Set findByType(Class type) { return delegate.findByType(type); } public Object lookup(String name) { return lookupByName(name); } public T lookup(String name, Class type) { return lookupByNameAndType(name, type); } public Map lookupByType(Class type) { return findByTypeWithName(type); } public Registry getRegistry() { return delegate; } @Override public String toString() { return delegate.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy