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:15:44 UTC

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

    [ https://issues.apache.org/activemq/browse/CAMEL-2642?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=58856#action_58856 ] 

Claus Ibsen commented on CAMEL-2642:
------------------------------------

Thats the initial code of IntrospectionSupport which requires the properties type to be convertable to String.
The code is > 3 years old.


> 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: Future
>
>         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