Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [%XML] >  [Exchange] >  [Adaptor]
Private  Storage   

abstract class %XML.Exchange.Adaptor extends %XML.Adaptor

XML Exchange Adaptor Sub-classes of %XML.Exchange.Adaptor are included in Configuration Management. Configuration Mangement is used to export and import Exchange Items. The items are written in XML such that the data is readable and different revisions of the item may be compared to identify changes.

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
2 1 13 6


Summary

Properties
GUID

Methods
GUIDGet GUIDSet XMLClear XMLDTD
XMLExchangeName XMLExchangePath XMLExport XMLExportToStream
XMLExportToString XMLGetElement XMLLoadGUID XMLNew
XMLSchema XMLSchemaNamespace XMLSchemaType


Parameters

• parameter GUIDENABLED = 1;
If this parameter is set to 1 then a GUID will be assigned (to the %GUID property) to each new object. When the object is saved for the first time this GUID value will be recorded in a namespace index which will allow GUID to be resolved to OIDs.
• parameter XMLDEFAULTREFERENCE = "GUID";
Default value of XMLREFERENCE that specifies how to project references to XML. XMLREFERENCE may be overridden for each property. SUMMARY indicates that only the summary properies of the referenced class are used to represent the reference. SUMMARY is the default. Note that by default all properties are of the referenced class are in the summary. COMPLETE indicates that all properties of the referenced class are used to represent the reference. ID indicates that the id of a persistent or serial class is used to represent the reference. OID indicates that the oid of a persistent or serial class is used to represent the reference. The form of the oid will be classname,id. GUID indicates the the GUID of a persistent class is used to represent the reference.

Properties

• property GUID as %RawString(XMLPROJECTION="ATTRIBUTE") [ Transient ];

Methods

• method GUIDGet() as %RawString
This is a Get accessor method for the GUID property.
• method GUIDSet(Arg As %RawString) as %Status
This is a Set accessor method for the GUID property.
• method XMLClear()
Clear propety values in preparation for the values from XML import
• classmethod XMLExchangeName(id As %String) as %String
Returns an value to identify the object. This method may be overriden to return a code or description.
• classmethod XMLExchangePath(id As %String) as %String
For very large tables it is necessary to break the records down into sub-directories. This method returns the sub-directory name to be used for the given id.

The sub-directory returned is then appended to the path using ##class(%File).SubDirectoryName()

• classmethod XMLGetElement(id As %String, Object As %RegisteredObject = $$$NULLOREF) as %String
Return the Oid of the Exchange Item that contains this object.
• classmethod XMLLoadGUID(document As %XML.Document, node As %Integer, containerOref As %RegisteredObject = "") as %RegisteredObject
Returns a matching object based on unique indices
• classmethod XMLNew(document As %XML.Document, node As %Integer, containerOref As %RegisteredObject = "") as %RegisteredObject
Get an instance of an XML enabled class.

You may override this method to do custom processing (such as initializing the object instance) before returning an instance of this class. However, this method should not be called directly from user code.
Arguments:
document is the document with %XML.Node or macros in %xmlDOM.inc.
nodeId is a node id of the node which defines this object. An %XML.Node object may be obtained for this node using document.GetNode(nodeId)
containerOref is the containing object instance when called from XMLImport and is "" when called from %XML.Reader for Correlate'd objects.

Triggers

•trigger ChangeControlAfterDelete (AFTER event DELETE)
•trigger ChangeControlAfterInsert (AFTER event INSERT)
•trigger ChangeControlAfterUpdate (AFTER event UPDATE)
•trigger ChangeControlBeforeDelete (BEFORE event DELETE)
•trigger ChangeControlBeforeInsert (BEFORE event INSERT)
•trigger ChangeControlBeforeUpdate (BEFORE event UPDATE)


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.