Package com.hp.ucmdb.api.snapshots
Interface ViewSnapshotCompareResult
public interface ViewSnapshotCompareResult
The data result and information details of a view snapshot comparison.
-
Method Summary
Modifier and TypeMethodDescriptionThe first snapshot header.The second snapshot header, or null if current view was requested.The first snapshot view result.The second (or current) snapshot view result.boolean
Returns true if the current view folding definition was used.
-
Method Details
-
getHeader1
SnapshotHeader getHeader1()The first snapshot header. -
getResult1
ViewResult getResult1()The first snapshot view result. -
getHeader2
SnapshotHeader getHeader2()The second snapshot header, or null if current view was requested. -
getResult2
ViewResult getResult2()The second (or current) snapshot view result. -
usedViewFoldingDefinition
boolean usedViewFoldingDefinition()Returns true if the current view folding definition was used. If the two snapshots are from the latest query version, it is possible to fold the results according to the view folding definition. Otherwise, a default folding definition is used.- Returns:
- true if the current view folding definition was used, false if a default folding definition was used.
-