how to access ref cursor from java
i written a procedure as shown below
CREATE OR REPLACE PROCEDURE sp_countrymasterlist_get
AS
TYPE CurTyp IS REF CURSOR;
country_cur CurTyp;
BEGIN
OPEN country_cur FOR
SELECT country_name FROM country_mstr;
END;
how to access this from java application