You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2010/04/15 09:08:46 UTC

[jira] Assigned: (CAMEL-2642) Inconsistency between IntrospectionSupport.getProperties() and IntrospectionSupport.getProperty()

     [ https://issues.apache.org/activemq/browse/CAMEL-2642?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen reassigned CAMEL-2642:
----------------------------------

    Assignee: Claus Ibsen

> Inconsistency between IntrospectionSupport.getProperties() and IntrospectionSupport.getProperty()
> -------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-2642
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-2642
>             Project: Apache Camel
>          Issue Type: Bug
>          Components: camel-core
>    Affects Versions: 2.3.0
>         Environment: All
>            Reporter: Christian Mueller
>            Assignee: Claus Ibsen
>             Fix For: 2.3.0
>
>         Attachments: camel-core-unit-test.patch
>
>
> IntrospectionSupport.getProperties() and IntrospectionSupport.getProperty() work in an inconsistency way:
> {code}
> ExampleBean bean = new ExampleBean();
> Date date = new Date(0);
> bean.setDate(date);
> assertSame(date, IntrospectionSupport.getProperty(bean, "date")); // succeed
> Map<String, Object> map = new HashMap<String, Object>();
> IntrospectionSupport.getProperties(bean, map, null);
> assertSame(date, map.get("date")); // fails
> {code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/activemq/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira