Francesco Chicchiriccò created SYNCOPE-358:
----------------------------------------------

             Summary: 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
            Reporter: Francesco Chicchiriccò


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

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