use of org.apache.camel.util.jndi.ExampleBean in project camel by apache.
the class IntrospectionSupportTest method testSetProperty.
public void testSetProperty() throws Exception {
ExampleBean bean = new ExampleBean();
bean.setId("123");
bean.setName("Claus");
bean.setPrice(10.0);
IntrospectionSupport.setProperty(bean, "name", "James");
assertEquals("James", bean.getName());
}
Aggregations