本文整理汇总了Java中org.apache.camel.spi.UriParams类的典型用法代码示例。如果您正苦于以下问题:Java UriParams类的具体用法?Java UriParams怎么用?Java UriParams使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
UriParams类属于org.apache.camel.spi包,在下文中一共展示了UriParams类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: populateParameterConfigurationMap
import org.apache.camel.spi.UriParams; //导入依赖的package包/类
protected static void populateParameterConfigurationMap(
final SortedMap<String, ParameterConfiguration> parameterMap, Class<?> aClass,
final String prefix) {
ReflectionHelper.doWithFields(aClass, new ReflectionHelper.FieldCallback() {
@Override
public void doWith(Field field) throws IllegalArgumentException, IllegalAccessException {
UriParam uriParam = field.getAnnotation(UriParam.class);
if (uriParam != null) {
String name = uriParam.name();
if (ObjectHelper.isEmpty(name)) {
name = field.getName();
}
String propertyName = prefix + name;
// is the parameter a nested configuration object
Class<?> fieldType = field.getType();
UriParams uriParams = fieldType.getAnnotation(UriParams.class);
if (uriParams != null) {
String nestedPrefix = uriParams.prefix();
if (nestedPrefix == null) {
nestedPrefix = "";
}
nestedPrefix = (prefix + nestedPrefix).trim();
populateParameterConfigurationMap(parameterMap, fieldType, nestedPrefix);
} else {
if (parameterMap.containsKey(propertyName)) {
LOG.warn("Duplicate property name " + propertyName + " defined on field " + field);
} else {
parameterMap.put(propertyName,
ParameterConfiguration.newInstance(propertyName, field, uriParam));
}
}
}
}
});
}