Search in sources :

Example 11 with ExampleBean

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());
}
Also used : ExampleBean(org.apache.camel.util.jndi.ExampleBean)

Aggregations

ExampleBean (org.apache.camel.util.jndi.ExampleBean)11 Method (java.lang.reflect.Method)4 HashMap (java.util.HashMap)3 LinkedHashMap (java.util.LinkedHashMap)3 Locale (java.util.Locale)1