DBA Data[Home] [Help]

XDB.DBMS_XDBRESOURCE dependencies on XMLTYPE

Line 42: FUNCTION getACLDocFromRes(res IN XDBResource) return sys.xmltype;

38: -- The ACL of the XDBResource as VARCHAR2
39: ---------------------------------------------
40: FUNCTION getACL (res IN XDBResource) return VARCHAR2;
41:
42: FUNCTION getACLDocFromRes(res IN XDBResource) return sys.xmltype;
43:
44: ---------------------------------------------
45: -- FUNCTION - getAuthor
46: -- Given an XDBResource, returns its author.

Line 460: -- Returns the contents of the resource as an XMLType.

456: FUNCTION getContentBlob(res IN XDBResource, csid OUT PLS_INTEGER) return BLOB;
457:
458: ---------------------------------------------
459: -- FUNCTION - getContentXML
460: -- Returns the contents of the resource as an XMLType.
461: -- PARAMETERS -
462: -- res - An XDBResource
463: -- RETURNS -
464: -- The contents as XMLType.

Line 464: -- The contents as XMLType.

460: -- Returns the contents of the resource as an XMLType.
461: -- PARAMETERS -
462: -- res - An XDBResource
463: -- RETURNS -
464: -- The contents as XMLType.
465: ---------------------------------------------
466: FUNCTION getContentXML(res IN XDBResource) return SYS.XMLType;
467:
468: ---------------------------------------------

Line 466: FUNCTION getContentXML(res IN XDBResource) return SYS.XMLType;

462: -- res - An XDBResource
463: -- RETURNS -
464: -- The contents as XMLType.
465: ---------------------------------------------
466: FUNCTION getContentXML(res IN XDBResource) return SYS.XMLType;
467:
468: ---------------------------------------------
469: -- FUNCTION - getContentVarchar2
470: -- Returns the contents of the resource as an Varchar2.

Line 484: -- The contents as an XMLTypeRef.

480: -- Returns the contents of the resource as a Ref.
481: -- PARAMETERS -
482: -- res - An XDBResource
483: -- RETURNS -
484: -- The contents as an XMLTypeRef.
485: ---------------------------------------------
486: FUNCTION getContentRef(res IN XDBResource) return REF SYS.XMLType;
487:
488: ---------------------------------------------

Line 486: FUNCTION getContentRef(res IN XDBResource) return REF SYS.XMLType;

482: -- res - An XDBResource
483: -- RETURNS -
484: -- The contents as an XMLTypeRef.
485: ---------------------------------------------
486: FUNCTION getContentRef(res IN XDBResource) return REF SYS.XMLType;
487:
488: ---------------------------------------------
489: -- PROCEDURE - setContent
490: -- Replaces the contents of the given resource with the given clob.

Line 509: -- Replaces the contents of the given resource with the given XMLType.

505: PROCEDURE setContent(res IN OUT XDBResource, data IN BLOB, csid IN PLS_INTEGER);
506:
507: ---------------------------------------------
508: -- PROCEDURE -
509: -- Replaces the contents of the given resource with the given XMLType.
510: -- PARAMETERS -
511: -- res - An XDBResource
512: -- data - The XMLType
513: ---------------------------------------------

Line 512: -- data - The XMLType

508: -- PROCEDURE -
509: -- Replaces the contents of the given resource with the given XMLType.
510: -- PARAMETERS -
511: -- res - An XDBResource
512: -- data - The XMLType
513: ---------------------------------------------
514: PROCEDURE setContent(res IN OUT XDBResource, data IN SYS.XMLType);
515:
516: ---------------------------------------------

Line 514: PROCEDURE setContent(res IN OUT XDBResource, data IN SYS.XMLType);

510: -- PARAMETERS -
511: -- res - An XDBResource
512: -- data - The XMLType
513: ---------------------------------------------
514: PROCEDURE setContent(res IN OUT XDBResource, data IN SYS.XMLType);
515:
516: ---------------------------------------------
517: -- PROCEDURE -
518: -- Replaces the contents of the given resource with the given string.

Line 527: -- Replaces the contents of the given resource with the given REF to XMLType.

523: PROCEDURE setContent(res IN OUT XDBResource, data IN VARCHAR2);
524:
525: ---------------------------------------------
526: -- PROCEDURE -
527: -- Replaces the contents of the given resource with the given REF to XMLType.
528: -- PARAMETERS -
529: -- res - An XDBResource
530: -- data - The REF to XMLType
531: ---------------------------------------------

Line 530: -- data - The REF to XMLType

526: -- PROCEDURE -
527: -- Replaces the contents of the given resource with the given REF to XMLType.
528: -- PARAMETERS -
529: -- res - An XDBResource
530: -- data - The REF to XMLType
531: ---------------------------------------------
532: PROCEDURE setContent(res IN OUT XDBResource, data IN REF SYS.XMLType,
533: sticky IN BOOLEAN := TRUE);
534:

Line 532: PROCEDURE setContent(res IN OUT XDBResource, data IN REF SYS.XMLType,

528: -- PARAMETERS -
529: -- res - An XDBResource
530: -- data - The REF to XMLType
531: ---------------------------------------------
532: PROCEDURE setContent(res IN OUT XDBResource, data IN REF SYS.XMLType,
533: sticky IN BOOLEAN := TRUE);
534:
535: ---------------------------------------------
536: -- PROCEDURE -

Line 569: namespace IN VARCHAR2) return SYS.XMLType;

565: FUNCTION hasChanged(res IN XDBResource, xpath IN VARCHAR2,
566: bnamespace IN VARCHAR2) return BOOLEAN;
567:
568: FUNCTION getCustomMetadata(res IN XDBResource, xpath IN VARCHAR2,
569: namespace IN VARCHAR2) return SYS.XMLType;
570:
571: FUNCTION hasCustomMetadataChanged(res IN XDBResource) return BOOLEAN;
572:
573: PROCEDURE setCustomMetadata(res IN XDBResource, xpath IN VARCHAR2,

Line 574: namespace IN VARCHAR2, newMetadata IN SYS.XMLType);

570:
571: FUNCTION hasCustomMetadataChanged(res IN XDBResource) return BOOLEAN;
572:
573: PROCEDURE setCustomMetadata(res IN XDBResource, xpath IN VARCHAR2,
574: namespace IN VARCHAR2, newMetadata IN SYS.XMLType);
575: end dbms_xdbresource;