Files
mip/Data/BulkLoad/EFT/Nominations/plsql/efno_java_xml_interface.spc

29 lines
899 B
Plaintext

CREATE OR REPLACE PACKAGE efno_java_xml_interface IS
/**
-- Provide a first point of contact for the java servlet
-- Author : GILBERTA
-- Created : 12/04/2010 10:51:08
--
*/
g_package_name CONSTANT VARCHAR2(30) := $$PLSQL_UNIT;
g_id CONSTANT VARCHAR2(240) := '$Id: $';
--
g_temp_clob CLOB;
--
/**
-- Procedure to handle request type 60
*/
PROCEDURE process_60_xml_message ( p_username IN VARCHAR2 DEFAULT NULL
, p_password IN VARCHAR2 DEFAULT NULL
, p_xml IN CLOB DEFAULT NULL
, p_return IN OUT CLOB
);
/**
-- Details about this module
-- %return Repository identification details
*/
FUNCTION about RETURN VARCHAR2;
--
END efno_java_xml_interface;
/