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

Jukka Zitting updated JCR-1226:
-------------------------------

        Fix Version/s: 1.4
             Assignee: Jukka Zitting
             Priority: Minor  (was: Major)
    Affects Version/s: 0.9
                       1.0
                       1.0.1
                       1.1
                       1.1.1
                       1.2.1
                       1.2.2
                       1.2.3
                       1.3.1
                       1.3.3

> ServerQuery does not use RemoteAdapterFactory for creating ServerQueryResult
> ----------------------------------------------------------------------------
>
>                 Key: JCR-1226
>                 URL: https://issues.apache.org/jira/browse/JCR-1226
>             Project: Jackrabbit
>          Issue Type: Bug
>          Components: jackrabbit-jcr-rmi
>    Affects Versions: 0.9, 1.0, 1.0.1, 1.1, 1.1.1, 1.2.1, 1.2.2, 1.2.3, 1.3, 
> 1.3.1, 1.3.3
>            Reporter: Vladimir Bayanov
>            Assignee: Jukka Zitting
>            Priority: Minor
>             Fix For: 1.4
>
>
> The ServerQuery sould use the Factory for creating ServerQueryResult.
> Siehe the method ServerQuery.execute():
> {code}
> public RemoteQueryResult execute() throws RepositoryException, 
> RemoteException {
>         return new ServerQueryResult(query.execute(), getFactory());
>     }
> {code}
> it should be:
> {code}
>     public RemoteQueryResult execute() throws RepositoryException, 
> RemoteException {
>         return getFactory().getRemoteQueryResult(this.query.execute());
>     }
> {code}

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

Reply via email to