You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@syncope.apache.org by "Francesco Chicchiriccò (JIRA)" <ji...@apache.org> on 2013/04/15 13:02:17 UTC

[jira] [Created] (SYNCOPE-358) ConnectorService#list invocation with null parameter actually calls ConnectorService#readByResource

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