You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Jukka Zitting (JIRA)" <ji...@apache.org> on 2007/04/25 10:57:16 UTC

[jira] Moved: (JCR-864) Bug in org.apache.portals.graffito.jcr.persistence.atomictypeconverter.impl.UtilDateTypeConverterImpl

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

Jukka Zitting moved GRFT-72 to JCR-864:
---------------------------------------

    Component/s:     (was: JCR-Mapping)
                 jcr-mapping
       Assignee:     (was: Christophe Lombart)
            Key: JCR-864  (was: GRFT-72)
        Project: Jackrabbit  (was: Graffito)

> Bug in org.apache.portals.graffito.jcr.persistence.atomictypeconverter.impl.UtilDateTypeConverterImpl
> -----------------------------------------------------------------------------------------------------
>
>                 Key: JCR-864
>                 URL: https://issues.apache.org/jira/browse/JCR-864
>             Project: Jackrabbit
>          Issue Type: Bug
>          Components: jcr-mapping
>            Reporter: Martin Koci
>         Attachments: UtilDateTypeConverterImpl.patch
>
>
> In this converter following line is used:
> return this.getValueFactory().createValue(((java.util.Date) propValue).getTime());
> but propValue must be converted to java.util.Calendar, not into long! ValueFactory than converts to LongValue not DateValue as expected.
> Following code works OK:
> final long timeInMilis = ((java.util.Date) propValue).getTime();
> final Calendar calendar = Calendar.getInstance();
> calendar.setTimeInMillis(timeInMilis);
> return this.getValueFactory().createValue( calendar );
> but I dont know better Date-> Calendar conversion.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.