git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@50874 248e525c-4dfb-0310-94bc-949c084e9493

This commit is contained in:
andrew.gilmore
2012-03-19 11:57:19 +00:00
parent 2a0f4900c3
commit 0e9ca75d77
1587 changed files with 500863 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
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;
/