You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Doug Cutting (JIRA)" <ji...@apache.org> on 2010/10/25 19:50:20 UTC

[jira] Assigned: (AVRO-683) Specify types in static factory methods in Requestors

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

Doug Cutting reassigned AVRO-683:
---------------------------------

    Assignee: Stephen Gargan

> Specify types in static factory methods in Requestors
> -----------------------------------------------------
>
>                 Key: AVRO-683
>                 URL: https://issues.apache.org/jira/browse/AVRO-683
>             Project: Avro
>          Issue Type: Improvement
>    Affects Versions: 1.5.0
>            Reporter: Stephen Gargan
>            Assignee: Stephen Gargan
>            Priority: Trivial
>             Fix For: 1.5.0
>
>         Attachments: typed-requestors.patch
>
>
> The attached patch adds type information to the static factory methods in the SpecificRequestor and ReflectRequestor to avoid the necessity of casting the proxy. 
> TestNamespace proxy = (TestNamespace)SpecificRequestor.getClient(TestNamespace.class, client);
> becomes
> TestNamespace proxy = SpecificRequestor.getClient(TestNamespace.class, client);

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