Package com.hp.ucmdb.api.topology
Interface TopologyModification
public interface TopologyModification
A structure serving as input to topology modification methods.
-
Method Summary
Modifier and TypeMethodDescriptionclean()
Removes all previously set topology data.Get topology data to be added to UCMDB.Get topology data to be deleted from UCMDB.Get topology data to be updated in UCMDB.Deprecated.Deprecated.Deprecated.boolean
Checks whether there are CIs and relations to be added to UCMDB.boolean
Checks whether there are CIs and relations to be deleted from UCMDB.boolean
Checks whether there are CIs and relations to be updated to UCMDB.setDataForCreate
(TopologyModificationData topologyModificationData) Adds topology data to the list of CIs and relations to be added to UCMDB.setDataForCreate
(TopologyModificationData topologyModificationData, ListPropertiesUpdate listPropertiesUpdate) Deprecated.Use thesetDataForCreate(TopologyModificationData)
method.setDataForDelete
(TopologyModificationData topologyModificationData) Adds topology data to the list of CIs and relations to be deleted from UCMDB.setDataForUpdate
(TopologyModificationData topologyModificationData) Adds topology data to the list of CIs and relations to be updated in UCMDB.setDataForUpdate
(TopologyModificationData topologyModificationData, ListPropertiesUpdate listPropertiesUpdate) Deprecated.Use thesetDataForUpdate(TopologyModificationData)
method.
-
Method Details
-
setDataForCreate
Adds topology data to the list of CIs and relations to be added to UCMDB. -
setDataForCreate
@Deprecated TopologyModification setDataForCreate(TopologyModificationData topologyModificationData, ListPropertiesUpdate listPropertiesUpdate) Deprecated.Use thesetDataForCreate(TopologyModificationData)
method.Adds topology data to the list of CIs and relations to be added to UCMDB. Updates the list property if it exists. This method can be used only with com.hp.ucmdb.api.topology.ModifyMode.OPTIMISTIC. -
setDataForUpdate
Adds topology data to the list of CIs and relations to be updated in UCMDB. -
setDataForUpdate
@Deprecated TopologyModification setDataForUpdate(TopologyModificationData topologyModificationData, ListPropertiesUpdate listPropertiesUpdate) Deprecated.Use thesetDataForUpdate(TopologyModificationData)
method.Adds topology data to the list of CIs and relations to be updated in UCMDB. -
setDataForDelete
Adds topology data to the list of CIs and relations to be deleted from UCMDB. -
clean
TopologyModification clean()Removes all previously set topology data. -
hasDataForCreate
boolean hasDataForCreate()Checks whether there are CIs and relations to be added to UCMDB. -
hasDataForUpdate
boolean hasDataForUpdate()Checks whether there are CIs and relations to be updated to UCMDB. -
hasDataForDelete
boolean hasDataForDelete()Checks whether there are CIs and relations to be deleted from UCMDB. -
getDataForCreate
TopologyModificationData getDataForCreate()Get topology data to be added to UCMDB. -
getDataForUpdate
TopologyModificationData getDataForUpdate()Get topology data to be updated in UCMDB. -
getListPropertiesUpdate
Deprecated. -
getListPropertiesUpdateForUpdateTopology
Deprecated. -
getListPropertiesUpdateForCreateTopology
Deprecated. -
getDataForDelete
TopologyModificationData getDataForDelete()Get topology data to be deleted from UCMDB.
-
TopologyModificationData.getListPropertiesUpdate()