blob: 25ecdda35d40a8e6cda66a088a7a2efceb06fd80 [file] [log] [blame]
/*
* 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.quarkus.core.runtime.support;
import java.util.Properties;
import org.apache.camel.CamelContext;
import org.apache.camel.support.IntrospectionSupport;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public final class RuntimeSupport {
private static final Logger LOGGER = LoggerFactory.getLogger(RuntimeSupport.class);
private RuntimeSupport() {
}
public static void bindProperties(CamelContext context, Properties properties, Object target, String prefix) {
if (!prefix.endsWith(".")) {
prefix += ".";
}
final String p = prefix;
properties.entrySet().stream()
.filter(entry -> entry.getKey() instanceof String)
.filter(entry -> entry.getValue() != null)
.filter(entry -> ((String) entry.getKey()).startsWith(p))
.forEach(entry -> {
String key = ((String) entry.getKey()).substring(p.length());
Object val = entry.getValue();
try {
if (context != null && val instanceof String) {
val = context.resolvePropertyPlaceholders((String) val);
}
IntrospectionSupport.setProperty(context, target, key, val);
} catch (Exception ex) {
throw new RuntimeException(ex);
}
});
}
public static void bindProperties(Properties properties, Object target, String prefix) {
bindProperties(null, properties, target, prefix);
}
}