Bulk delete resource

<< Click to Display Table of Contents >>

Current:  System Integration > Interface Instruction > Resource Batch Modification 

Bulk delete resource

Previous pageReturn to chapter overviewNext page

Method description

An interface call for bulk deletion of ordinary asset resources is provided. The caller passes in a < Asset > generic List data structure, which can delete the asset resources corresponding to each ref specified in this list.

 

The following needs to be noted :

 

During loop execution, the ref will not be able to add and throw error messages if the current ref does not exist on the system or if the specified principal does not have write permission to this ref's parent.

 

If an error or exception occurs during the loop execution, if the caller passes in a errorInfo parameter that is not null, the error message is logged in the errorInfo and continues to perform the delete action of the subsequent asset, otherwise the execution process will be interrupted. And throw an exception at the dead end.

 

This method cannot delete folder. For bulk deletion of folder, view the bulk delete folder interface.

 

method of calling 

rep.removeAssets(List<AssetRef> refs, GPrincipal user,  Map<AssetRef, String> errorInfo)

 

parameter declaration 

parameter name

parameter type

parameter declaration

Must pass

refs

List<AssetRef>

The generic type is the list data interface of AssetRef, which stores the corresponding location information of Asset that needs to be deleted.

yes

user

GPrincipal

GPrincipal object for validation of permissions

yes

errorInfo

Map<AssetRef, String>

Exception information set, structure:ref->e.message

no

 

returned value 

none

 

exception declaration 

If an error or exception occurs during execution, the calling place does not pass in the errorInfo parameter or the errorInfo parameter is null. the execution process is interrupted and an exception is thrown at the invocation.