blob: a4304d3be929e4936ba7073952aadb9f3f51bb92 [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.impl;
import junit.framework.TestCase;
import org.apache.camel.Exchange;
import org.apache.camel.TypeConverter;
/**
* @version
*/
public class TypeConverterRegistryMissesThenAddTest extends TestCase {
public void testMissThenAddTypeConverter() {
DefaultCamelContext context = new DefaultCamelContext();
MyOrder order = context.getTypeConverter().convertTo(MyOrder.class, "123");
assertNull(order);
// add missing type converter
context.getTypeConverterRegistry().addTypeConverter(MyOrder.class, String.class, new MyOrderTypeConverter());
// this time it should work
order = context.getTypeConverter().convertTo(MyOrder.class, "123");
assertNotNull(order);
assertEquals(123, order.getId());
}
private class MyOrder {
private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
private class MyOrderTypeConverter implements TypeConverter {
@SuppressWarnings("unchecked")
public <T> T convertTo(Class<T> type, Object value) {
// converter from value to the MyOrder bean
MyOrder order = new MyOrder();
order.setId(Integer.parseInt(value.toString()));
return (T) order;
}
public <T> T convertTo(Class<T> type, Exchange exchange, Object value) {
// this method with the Exchange parameter will be preferred by Camel to invoke
// this allows you to fetch information from the exchange during conversions
// such as an encoding parameter or the likes
return convertTo(type, value);
}
public <T> T mandatoryConvertTo(Class<T> type, Object value) {
return convertTo(type, value);
}
public <T> T mandatoryConvertTo(Class<T> type, Exchange exchange, Object value) {
return convertTo(type, value);
}
}
}