Package com.documentum.operations
Interface IDfXMLDocType
public interface IDfXMLDocType
IDfXMLDoctype provides access to XML document information such as DTD system identifier,
schemaLocation, and root element name.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
For internal use.Returns the DTD Public Id from the given XML document.Returns the DTD System Id from the given XML document.Deprecated.DFC 5.2.Returns the root element from the given XML document.Deprecated.5.3 SP1Returns a list of schemas referenced by SchemaLocation or noNamespaceSchemaLocation.Returns the xml application from the given XML document,if a processing instruction was found that indicates the XML application.void
setDTDPublicId
(String publicId) For internal use.void
setDTDSystemId
(String systemId) For internal use.void
setRootElement
(String rootElement) For internal use.void
Deprecated.5.3 SP1void
setXMLApplication
(String xmlApplicationName) For internal use.
-
Method Details
-
getDTDSystemId
String getDTDSystemId()Returns the DTD System Id from the given XML document. The system id, if present, is used to query for XML applications that can be applied to an inbound XML document.- Returns:
- DTC Sytem Id from the given XML document.
-
getDTDPublicId
String getDTDPublicId()Returns the DTD Public Id from the given XML document. The public ID, if present, is used to query for XML applications that can be applied to an inbound XML document.- Returns:
- DTC Public Id from the given XML document.
-
getNameSpace
String getNameSpace()Deprecated.DFC 5.2. Use getSchema instead.Returns the namespaces that are declared on the root element of the given XML document.- Returns:
- name space from the given XML document.
- See Also:
-
getRootElement
String getRootElement()Returns the root element from the given XML document. The root element is used to query for XML applications that can be applied to an inbound XML document.- Returns:
- root element from the given XML document.
-
getXMLApplication
String getXMLApplication()Returns the xml application from the given XML document,if a processing instruction was found that indicates the XML application.- Returns:
- xml application from the given XML document,if a processing instruction was found that indicates the XML application.
-
getSchema
String getSchema()Deprecated.5.3 SP1Returns the schema referenced by SchemaLocation or noNamespaceSchemaLocation. The schema name, if present, is used to query for XML applications that can be applied to an inbound XML document.- Returns:
- the filepath of the schema, as used in the XML file.
- Since:
- DFC 5.2
-
getSchemaList
IDfList getSchemaList()Returns a list of schemas referenced by SchemaLocation or noNamespaceSchemaLocation. The schema names, if present, are used to query for XML applications that can be applied to an inbound XML document.- Returns:
- the filepath of the schema, as used in the XML file.
- Since:
- DFC 5.2
-
setSchema
Deprecated.5.3 SP1For internal use. -
addSchema
For internal use.- Parameters:
schema
-
-
setRootElement
For internal use. -
setDTDSystemId
For internal use. -
setDTDPublicId
For internal use. -
setXMLApplication
For internal use.
-