Package com.hp.ucmdb.api.topology
Interface QueryChangeResult
public interface QueryChangeResult
The result of a call to
QueryManagementService.modifyQuery(QueryChangeCommand)
.
This structure holds the queries that were changed, both before and after the change.
The Query objects are fully loaded and do not require a request to the server for their definitions.- Since:
- UCMDB 9.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns all of the changed queries after modification.Returns all of the changed queries before modification.getChangedQueryAfterModification
(String queryName) Returns the changed query after modification, or null if the given query name was not changed.getChangedQueryBeforeModification
(String queryName) Returns the changed query before modification, or null if the given query name was not changed.
-
Method Details
-
getChangedQueryBeforeModification
Returns the changed query before modification, or null if the given query name was not changed. -
getAllChangedQueriesBeforeModification
Returns all of the changed queries before modification. -
getChangedQueryAfterModification
Returns the changed query after modification, or null if the given query name was not changed. -
getAllChangedQueriesAfterModification
Returns all of the changed queries after modification.
-