Uses of Interface
com.ibm.uddi.promoter.PromoterConstants

Packages that use PromoterConstants
com.ibm.uddi.promoter Contains API, command line and utility classes. 
com.ibm.uddi.promoter.config Contains configuration related classes. 
com.ibm.uddi.promoter.db Contains database driver related classes. 
com.ibm.uddi.promoter.entity Contains classes that represent minimal UDDI data entities. 
com.ibm.uddi.promoter.exception Contains PromoterException and sub-classes. 
com.ibm.uddi.promoter.export Contains entity extractor and finder related classes. 
com.ibm.uddi.promoter.publish Contains classes for performing publish operations. 
com.ibm.uddi.promoter.transform Contains XML serialization/deserialization classes. 
 

Uses of PromoterConstants in com.ibm.uddi.promoter
 

Classes in com.ibm.uddi.promoter that implement PromoterConstants
 class CommandLineProcessor
          Processes command line arguments, sets up configuration and passes it to PromoterAPI and invokes method corresponding to the user-selected function.
 class Invoker
          Starts a new JVM and invokes the CommandLineProcessor class with supplied arguments.
 class PromoterAPI
          API functions for exporting, importing, promoting, finding and deleting UDDI entities.
 class PromoterLogger
          Manages the output of messages and trace.
 class Publisher
          Container class for user credentials
 class TopologyUtils
          Utility class for sorting referenced tModels to valid load order and detecting cycles in the reference topology.
 class UDDIClient
          Wrapper class to UDDIProxy, used to perform operations via SOAP on a UDDI registry.
 class UddiEntities
          Container for UDDI4J objects.
 class UddiEntityKeys
          Container class for lists of keys for each of the UDDI entity types
 

Uses of PromoterConstants in com.ibm.uddi.promoter.config
 

Classes in com.ibm.uddi.promoter.config that implement PromoterConstants
 class Configuration
          Represents the configuration for UDDI Utility Tools.
 class ConfigurationValidator
          Validates that configurations are correct for the function requested.
 class DatabaseConfiguration
          Configuration class for database.
 class LoggerConfiguration
          Encapsulates properties relating to the logging system
 

Uses of PromoterConstants in com.ibm.uddi.promoter.db
 

Classes in com.ibm.uddi.promoter.db that implement PromoterConstants
 class DBManager
          DBManager is a singleton from which database connections can be obtained.
 

Uses of PromoterConstants in com.ibm.uddi.promoter.entity
 

Classes in com.ibm.uddi.promoter.entity that implement PromoterConstants
 class BindingStub
          Builds minimal data required for a binding and inserts into database.
 class BusinessStub
          Builds minimal data required for a business and inserts into database.
 class KeyedEntityStub
          Super class of any element that is addressed with a key.
 class MinimalEntityValidator
          Validates content of minimal entity objects (types of KeyedEntityStub).
 class NamedEntityStub
          This is a type of KeyedEntityStub that can also contain a name.
 class PrimaryEntityStub
          This class contains the ownerName and operatorName fields used by BusinessEntity and TModel.
 class ServiceStub
          Builds minimal data required for a service and inserts into database.
 class TModelStub
          Builds minimal data required for a tModel and inserts into database.
 

Uses of PromoterConstants in com.ibm.uddi.promoter.exception
 

Classes in com.ibm.uddi.promoter.exception that implement PromoterConstants
 class CommandLineException
          Represents errors specific to command line use of UDDI Utility Tools.
 class PromoterConfigurationException
          A PromoterException subclass to indicate a problem with configuration data.
 class PromoterDBException
          A PromoterException subclass to be used to represent errors relating to the database.
 class PromoterException
          A base exception class for all the checked exceptions that are thrown from within UDDI Utility Tools.
 class PromoterIOException
          A PromoterException subclass used to indicate IO related errors.
 class PromoterParserException
          A PromoterException subclass used to indicate errors thrown by the XML parser.
 class PromoterTopologyException
          PromoterException subclass to indicate problem with referenced tModels topology, For example, if a cycle is detected.
 class PromoterTransportException
          A PromoterException subclass exception used when a transport error has occurred.
 class PromoterUDDI4JException
          A PromoterException subclass to indicate an error during an UDDI4J operation.
 class PromoterValidationException
          PromoterException subclass to indicate problem with validation of any UUT type.
 

Uses of PromoterConstants in com.ibm.uddi.promoter.export
 

Classes in com.ibm.uddi.promoter.export that implement PromoterConstants
 class EntityExtractor
          Iterates through list of entity keys, retrieves each UDDI entity from the source UDDI registry and returns a list of UDDI4J objects.
 class EntityFinder
          Performs find functions on the source registry and returns collections of keys (as a UddiEntityKeys) for entities that match the search criteria.
 class KeyFileReader
          Reads comma delimited file and extracts lists of entity keys as UddiEntityKeys.
 class ReferencedEntityExtractor
          Examines CategoryBag, IdentifierBag, Contact and TModelInstanceDetails and extracts lists of referenced tModel keys.
 class TruncatedResultsStates
          Holds states of the five possible inquiry requests, indicating which result sets were truncated.
 

Uses of PromoterConstants in com.ibm.uddi.promoter.publish
 

Classes in com.ibm.uddi.promoter.publish that implement PromoterConstants
 class EntityDeleter
          Given a list of entity keys, performs delete operations in the target registry.
 class EntityDetector
          Tests UDDI Registry for existence of given entity.
 class EntityImporter
          Creates entities in target UDDI registry, given entity lists.
 class EntityKeyValidator
          Checks that entities contain non null, non empty and valid keys.
 class EntityStubManager
          Manages creation of minimal UDDI entity data in UDDI registry database.
 class KeyDetector
          Checks entity specific database tables directly to detect if another entity type is using the specified key.
 

Uses of PromoterConstants in com.ibm.uddi.promoter.transform
 

Classes in com.ibm.uddi.promoter.transform that implement PromoterConstants
 class ElementMapper
          Converts DOM element to corresponding UDDI4J object.
 class ErrorHandler
          Catches parsing errors and warnings from parser.
 class UddiDeserializer
          Parses UDDI Entity Definition File (XML) and transforms to UDDI4J types.
 class UddiEntityResolver
          XML parser invokes this to return schema files in the same package, so there is no need to connect to an external URL.
 class UddiSerializer
          Transforms UDDI4J types to XML
 class UddiTransformer
          Base for serializer/deserializer classes