<< Click to Display Table of Contents >> Bulk mobile resource |
![]() ![]() ![]() |
❖Method description
This paper provides an interface call to move ordinary asset resources in batches. The caller passes in a generic Map data structure of < from Asset Reft to] AssetRef >, which can move the AssetRef specified data of the key position in this map to the AssetRef specified position of the corresponding value position.
The following needs to be noted :
•During loop execution, the specified principle needs to have write permission to the current from Reft, parent of fromRef, and parent of toRef, otherwise there will be an error in moving the resource
•During loop execution, if the parent for the current fromRef or toRef does not exist, or if the toRef already exists, an error will occur in the movement of this resource
•If an error or exception occurs during the execution of the loop, if the caller passes the errorInfo parameter that is not null, the error information will be recorded in the errorInfo, and the movement of the subsequent asset will be continued, otherwise the execution process will be interrupted and the exception will be thrown out of the exception.
•This method cannot move folder. For bulk movement of folder, view the bulk mobile folder interface
❖method of calling
rep.moveAssets(Map<AssetRef,AssetRef> moves, GPrincipal user, Map<AssetRef, String> errorInfo)
❖parameter declaration
parameter name |
parameter type |
parameter declaration |
Must pass |
---|---|---|---|
moves |
Map<AssetRef,AssetRef> |
The generic type is <AssetRef, AssetRef>'s map data interface, which stores the Asset that needs to be moved, and the information of the target location. |
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 and the caller does not pass in the errorInfo parameter or the errorInfo parameter nullthe execution process is interrupted and an exception is thrown at the dead end.