I am not entirely sure what your intentions are here, but it appears
that you are missing a return statement in your OrgIdService execute()
method -- the function only has one return statement, and it returns
null.  You need at least one return statement that returns an ArrayList.

As a minimal change, you probably want to have:

        return facilList;

Right after you close your connection in your try block.  Alternatively,
you could return null only in the catch block, and return facilList
otherwise at the end of the method, depending on your other intentions.

-Greg




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to