Package com.hp.ucmdb.api.folders
Interface FolderManagementResultsHolder
public interface FolderManagementResultsHolder
FolderManagementResultsHolder is a data holder for folder operation results such as update folder and rename folder.
It keeps information about the new created folder - folder path and id.
-
Method Summary
Modifier and TypeMethodDescriptiongetId()
The ID of the folder in the URM.getPath()
The full path of the resource.boolean
Whether the call for the operation contained a demand for path and id (detailed result and not only success/failure.boolean
succeed()
Whether the operation (rename folder, create folder etc.) succeeded.
-
Method Details
-
succeed
boolean succeed()Whether the operation (rename folder, create folder etc.) succeeded.- Returns:
- true if the operation succeeded.
-
isDetailed
boolean isDetailed()Whether the call for the operation contained a demand for path and id (detailed result and not only success/failure.- Returns:
- True for detailed. False otherwise.
-
getPath
The full path of the resource.- Returns:
- full path to resource id pair.
-
getId
String getId()The ID of the folder in the URM.- Returns:
- folder id.
-