|
Java API | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
See:
Description
Interface Summary |
Interface | Description |
---|---|
CoreTModelConstants | This interface contains various constants defined in the UDDI specification which relate to the core tModels which are pre-loaded into the registry. |
DomXmlScanner |
This interface represents a DOM tree source for the serialized XML
content of a UddiElement . |
DomXmlWriter |
This interface represents a DOM tree destination for the serialized XML
content of a UddiElement . |
ReaderXmlScanner |
This interface represents a Reader source for the serialized XML
content of a UddiElement . |
UddiElementFactory | This interface provides a factory for subclasses of UddiElement. |
UddiElementIterator | This class is for iterating UDDI elements (of the same type) in various UddiElements. |
WriterXmlWriter |
This interface represents a Writer destination for the serialized XML
content of a UddiElement . |
XmlScanner | This interface represents a source for the deserialization of
UddiElement content from some data format. |
XmlWriter | This interface represents a destination for the serialized XML
content of a UddiElement . |
Class Summary |
Class | Description |
---|---|
DefaultXmlScanner | This class is an implementation of both the DomXmlScanner
interface and the ReaderXmlScanner interface; that is,
it can act as a source DOM tree or a source Reader
for UddiElement content. |
DefaultXmlWriter | This class is an implementation of both the DomXmlWriter
interface and the WriterXmlWriter interface; that is,
it can act as a destination DOM tree or a destination Writer
for UddiElement content. |
DomUtil | Various helper methods (absented in DOM API) over DOM objects. |
IteratorElementLifeCycle | |
UddiElement | This is the base class for all UDDI XML elements. |
UddiVersionConstants | Encapsulates version information for this implementation of the UDDI specification. |
Exception Summary |
Exception | Description |
---|---|
MarshallException | Base exception class for exceptions thrown when errors occur during UDDI element marshalling, i.e., conversion from XML to Java objects. |
UnmarshallException | Base exception class for exceptions thrown when errors occur during UDDI element unmarshalling, i.e., conversion from XML to Java objects. |
Provides classes that represent the data structures in UDDI API XML messages. Refer to UDDI specification for details.
For composite structures, i.e., non-leaf XML elements, class UddiElement serves as the base class to all of them. For structures that represent a leaf XML element(i.e., an XML element with no attributes or sub elements) or an XML attribute, String (or other appropriate Java type) are used. Examples include findQualifier, tModelKety element, etc.
A collection of leaf XML elements, e.g., the set of desriptions, tModelBag, etc., are represented by a general List
structure. A collection of non-leaf XML elements, e.g., IdentifierBag, are represented by UddiElementBag
,
which exposes a List interface and an iterator interface (to handle large requests/responses).
Clients should use an instance of UddiElementFactory
instead of the constructors to create the UDDI elements: it is expected that
various UDDI element classes will be replaced with interfaces and hence the constructors will not be available.
Package oracle.uddi.message.j2ee
provides specific data structures (over the more fleixble UDDI message structure) tailored for Oracle J2EE Web Services publishing needed.
When applicable, a "OC4J note" is provided in the appropriate UDDI messages for OC4J usage.
|
Java API | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |