Uses of Class
com.hp.ucmdb.api.UcmdbException

Packages that use UcmdbException
com.hp.ucmdb.api This package contains the top level of API set for working with the UCMDB. 
com.hp.ucmdb.api.classmodel This package contains services for querying and listening for changes in the UCMDB class model. 
com.hp.ucmdb.api.datastoremgmt This package contains services for datastore management. 
com.hp.ucmdb.api.discovery.types This package contains interfaces that represent the basic discovery elements of the API. 
com.hp.ucmdb.api.impact This package contains services for analysing the impact of changes to configuration items in the IT universe. 
com.hp.ucmdb.api.resources This package contains services for managing definitions of TQLs, views, users and other resources. 
com.hp.ucmdb.api.topology This package contains services for defining and running TQL queries and processing the results. 
com.hp.ucmdb.api.view This package contains services for handling UCMDB views. 
 

Uses of UcmdbException in com.hp.ucmdb.api
 

Subclasses of UcmdbException in com.hp.ucmdb.api
 class CommunicationException
          Thrown on communication failure between the client and the UCMDB server or on protocol error.
 class CustomerNotAvailableException
          The UCMDB server is not yet ready to accept connect request.
 class ExecutionException
          A UCMDB server-side exception.
 class IncompatibleVersionException
          The server cannot support this version of the client implementation.
 class InvalidCredentialsException
          Client authentication failed.
 

Uses of UcmdbException in com.hp.ucmdb.api.classmodel
 

Subclasses of UcmdbException in com.hp.ucmdb.api.classmodel
 class AttributeDoesNotExistException
           
 class AttributeNotStaticException
          A non-static value was used in a context that requires a static value.
 class AttributeStaticException
          A static value was used in a context that requires a non-static value.
 class ClassDoesNotExistException
           
 class QualifierDoesNotExistException
           
 

Uses of UcmdbException in com.hp.ucmdb.api.datastoremgmt
 

Subclasses of UcmdbException in com.hp.ucmdb.api.datastoremgmt
 class DataStoreCheckedException
           
 class DataStoreConnectionException
           
 class DataStoreException
           
 

Uses of UcmdbException in com.hp.ucmdb.api.discovery.types
 

Subclasses of UcmdbException in com.hp.ucmdb.api.discovery.types
 class IllegalNetworkRangeException
          Indicates that an input IP range is invalid.
 class ParsingRuleDoesNotExistException
           
 class ProcessDoesNotExistException
          Indicates that the ProcessSignature does not exist.
 class SignatureDoesNotExistException
          Indicates that the SoftwareSignature does not exist
 

Uses of UcmdbException in com.hp.ucmdb.api.impact
 

Subclasses of UcmdbException in com.hp.ucmdb.api.impact
 class InvalidImpactDefinitionException
           
 

Uses of UcmdbException in com.hp.ucmdb.api.resources
 

Subclasses of UcmdbException in com.hp.ucmdb.api.resources
 class ResourceValidationException
           
 

Methods in com.hp.ucmdb.api.resources that throw UcmdbException
 void ResourceManagementService.deployPackage(java.io.File packageFile)
          Deploys the contents of the package file to the server.
 void ResourceManagementService.deployPackage(java.lang.String packageName, java.io.InputStream packageContent)
          Deploys the contents of the stream to the server as a package with the specified name.
 

Uses of UcmdbException in com.hp.ucmdb.api.topology
 

Subclasses of UcmdbException in com.hp.ucmdb.api.topology
 class InvalidQueryDefinitionException
          The query cannot be processed due to syntax or other error in the query.
 

Methods in com.hp.ucmdb.api.topology that throw UcmdbException
 CreateOutput TopologyUpdateService.create(TopologyModificationData modificationData, CreateMode mode)
          Creates the specified set of CIs and relations in the UCMDB.
 DeleteOutput TopologyUpdateService.delete(TopologyModificationData modificationData, DeleteMode mode)
          Deletes a set of CIs and relations from the UCMDB.
 TopologyCount TopologyQueryService.evaluateNamedQuery(java.lang.String queryName)
          Executes the query of the specified name and return its result count.
 TopologyCountByClasses TopologyQueryService.evaluateNamedQueryWithClassesBreakdown(java.lang.String queryName, java.util.Collection<java.lang.String> elementNamesToCount)
          Executes the query of the specified name and return its result count break-down by classes.
 TopologyCount TopologyQueryService.evaluateQuery(ExecutableQuery query)
          Executes a query stored on the server and returns the result count.
 TopologyCount TopologyQueryService.evaluateQuery(QueryDefinition queryDefinition)
          Executes a query defined on the client and returns its result count.
 TopologyCountByClasses TopologyQueryService.evaluateQueryWithClassesBreakdown(ExecutableQuery query, java.util.Collection<java.lang.String> elementNamesToCount)
          Executes a query stored on the server and returns the result count break-down by classes.
 TopologyCountByClasses TopologyQueryService.evaluateQueryWithClassesBreakdown(QueryDefinition queryDefinition, java.util.Collection<java.lang.String> elementNamesToCount)
          Executes a query defined on the client and return its result count break-down by classes.
 ExecuteOutput TopologyUpdateService.execute(TopologyModification topologyModification, ModifyMode mode)
          Modifies the specified set of CIs and relations in the UCMDB.
 Topology TopologyQueryService.executeNamedQuery(java.lang.String queryName)
          Executes the query of the specified name.
 Topology TopologyQueryService.executeNamedQueryInBDMScope(java.lang.String queryName)
          Executes the query of the specified name within the BDM scope.
 Topology TopologyQueryService.executeQuery(ExecutableQuery query)
          Executes a query stored on the server and returns the result.
 Topology TopologyQueryService.executeQuery(QueryDefinition queryDefinition)
          Executes a query defined on the client.
 Topology TopologyQueryService.executeQueryInBDMScope(ExecutableQuery query)
          Executes a query that is stored on the server, within the BDM scope, and returns the result.
 QueryResultChange LiveQueryResult.getChanges()
          Returns the changes to the query result.
 QueryResultChange LiveQuery.getChanges(QueryResultVersion queryResultVersion)
          returns the changes in the result of the query since the result had the given result version Notice that there may be cases where has changes returned true, but get changes will return empty changes since it accumulates changes, for example, if certain object was added and than was removed
 Topology LiveQueryResult.getCurrentTopology()
          Returns current topology from the server.
 LiveTopology LiveQuery.getQueryResult()
          Gets the result of the query.
 boolean LiveQueryResult.hasChanges()
          Returns true if the server has changes on the query result.
 boolean LiveQuery.hasChanges(QueryResultVersion queryResultVersion)
          Determines whether there are changes in the result of the query since the result had the given result version.
 java.lang.String TopologyQueryService.queryDefinitionToString(QueryDefinition queryDefinition)
          Returns the query's string representation.
 void TopologyQueryService.registerModelListener(ModelListener listener)
          Deprecated. replaced by TopologyQueryService.registerModelListener(ModelListener listener, ModelEventsFilter filter)
 java.lang.String TopologyQueryService.registerModelListener(ModelListener listener, ModelEventsFilter filter)
          Registers a listener to be called when the model stored on the UCMDB server changes.
 java.lang.String TopologyQueryService.registerModelListener(ModelListener listener, ModelListenerFilter filter)
          Deprecated. replaced by TopologyQueryService.registerModelListener(ModelListener listener, ModelEventsFilter filter)
 void TopologyQueryService.registerQueryResultListener(QueryResultListener listener, java.lang.String queryName)
          Registers a listener to be called when the result of the specified server-side query changes.
 LiveQueryResultListener LiveQuery.removeQueryResultListener()
          Unregisters live query listener.
 UcmdbId TopologyUpdateFactory.restoreCIIdFromString(java.lang.String id)
          Returns the UcmdbId object for the specified string representation of a CI ID.
 QueryDefinition TopologyQueryService.stringToQueryDefinition(java.lang.String str)
          Returns a copy of the original query definition used to create the string.
 void TopologyUpdateService.touch(TopologyModificationData modificationData)
          Delays deletion of UCMDB CIs and relations due to aging.
 void TopologyQueryService.unregisterModelListener(java.lang.String listenerId)
          Unregisters the specified model listener.
 void TopologyQueryService.unregisterQueryResultListener(QueryResultListener listener, java.lang.String queryName)
          Unregisters the specified listener.
 UpdateOutput TopologyUpdateService.update(TopologyModificationData modificationData)
          Updates a set of CIs and relations in the UCMDB.
 void TopologyQueryService.updateFilteredModelListener(java.lang.String listenerId, ModelEventsFilter filter)
          Updates model listener filter definition.
 void TopologyQueryService.updateFilteredModelListener(java.lang.String listenerId, ModelListenerFilter filter)
          Deprecated. replaced by TopologyQueryService.updateFilteredModelListener(String listenerId, ModelEventsFilter filter)
 boolean TopologyQueryService.validateBDMQuery(QueryDefinition queryDefinition)
          Checks if the query definition is BDM compliant.
 

Uses of UcmdbException in com.hp.ucmdb.api.view
 

Subclasses of UcmdbException in com.hp.ucmdb.api.view
 class ViewDoesNotExistException
           
 

Methods in com.hp.ucmdb.api.view that throw UcmdbException
 ViewDefinition ViewService.stringToViewDefinition(java.lang.String str)
          Given a string created by ViewService.viewDefinitionToString(com.hp.ucmdb.api.view.ViewDefinition), this methods returns a copy of the original ViewDefinition.
 java.lang.String ViewService.viewDefinitionToString(ViewDefinition viewDefinition)
          Given a ViewDefinition this method returns the view's string representation.
 



Documentation Feedback
Copyright 2010 Hewlett-Packard Development Company, L.P.