Rem Rem Copyright (c) 2000 by Oracle Corporation Rem create or replace package wb_rt_property is function create_property ( p_property_path in varchar2, p_property_value in clob, p_is_mutable in number ) return number; procedure set_property ( p_property_id in number, p_property_value in clob ); procedure set_property ( p_property_path in varchar2, p_property_value in clob ); procedure get_property ( p_property_path in varchar2, p_property_value out clob, p_property_id out number, p_is_mutable out number ); function get_property ( p_property_path in varchar2 ) return varchar2; procedure get_property ( p_property_id in number, p_property_value out clob, p_property_path out varchar2, p_is_mutable out number ); function get_property ( p_property_id in number ) return varchar2; end wb_rt_property; /