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

Francesco Chicchiriccò updated SYNCOPE-358:
-------------------------------------------

    Description: 
As discussed in mailing list [1], this can be fixed by changing

    @GET
    ConnInstanceTO readByResource(@MatrixParam("resourceName") String 
resourceName);

into

    @GET
    @Path("byResource/{resourceName}")
    ConnInstanceTO readByResource(@PathParam("resourceName") String 
resourceName);

[1] 
http://syncope-dev.1063484.n5.nabble.com/DISCUSS-ConnectorService-Java-7-and-MatrixParam-tt5713486.html

  was:
As discussed in mailing list [1], this can be fixed by changing

    @GET
    ConnInstanceTO readByResource(@MatrixParam("resourceName") String 
resourceName);

into

    @GET
    @Path("{resourceName}")
    ConnInstanceTO readByResource(@PathParam("resourceName") String 
resourceName);

[1] 
http://syncope-dev.1063484.n5.nabble.com/DISCUSS-ConnectorService-Java-7-and-MatrixParam-tt5713486.html

    
> ConnectorService#list invocation with null parameter actually calls 
> ConnectorService#readByResource
> ---------------------------------------------------------------------------------------------------
>
>                 Key: SYNCOPE-358
>                 URL: https://issues.apache.org/jira/browse/SYNCOPE-358
>             Project: Syncope
>          Issue Type: Bug
>          Components: client, common, core
>    Affects Versions: 1.1.0
>            Reporter: Francesco Chicchiriccò
>            Assignee: Francesco Chicchiriccò
>             Fix For: 1.1.1, 1.2.0
>
>
> As discussed in mailing list [1], this can be fixed by changing
>     @GET
>     ConnInstanceTO readByResource(@MatrixParam("resourceName") String 
> resourceName);
> into
>     @GET
>     @Path("byResource/{resourceName}")
>     ConnInstanceTO readByResource(@PathParam("resourceName") String 
> resourceName);
> [1] 
> http://syncope-dev.1063484.n5.nabble.com/DISCUSS-ConnectorService-Java-7-and-MatrixParam-tt5713486.html

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to