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 Details

    • getChangedQueryBeforeModification

      Query getChangedQueryBeforeModification(String queryName)
      Returns the changed query before modification, or null if the given query name was not changed.
    • getAllChangedQueriesBeforeModification

      Map<String,Query> getAllChangedQueriesBeforeModification()
      Returns all of the changed queries before modification.
    • getChangedQueryAfterModification

      Query getChangedQueryAfterModification(String queryName)
      Returns the changed query after modification, or null if the given query name was not changed.
    • getAllChangedQueriesAfterModification

      Map<String,Query> getAllChangedQueriesAfterModification()
      Returns all of the changed queries after modification.