<< Click to Display Table of Contents >> Batch addition of resources |
![]() ![]() ![]() |
❖Method description
This paper provides an interface call to add ordinary asset resources in bulk. The caller passes in a Map data structure of < Asset Reft, Asset > generics, which can add the asset data in this map to the location specified by the corresponding AssetRef.
The following needs to be noted :
•During loop execution, if the current ref already exists on the system, the addition of this ref is skipped.
•In the cycle execution, if the current ref's parent folder does not exist in the system, or the specified principal has no write permission for the ref's parent, this ref will not add and throw out the error information.
•During loop execution, if the resource corresponding to the current ref already exists, the specified principle write permission information to this ref needs to be verified, or an error will occur if the checksum passes through the execution process of the next ref.
•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 subsequent asset addition action, otherwise the execution process will be interrupted. And throw an exception at the dead end.
•This method cannot be added to folder. For batch addition of folder, view the batch add folder interface.
❖method of calling
rep.setAssets(Map<AssetRef, Asset> assetMap, GPrincipal user, Map<AssetRef, String> errorInfo)
❖parameter declaration
parameter name |
parameter type |
parameter declaration |
Must pass |
---|---|---|---|
assetMap |
Map<AssetRef, Asset> |
Ref- > Asset's map data interface, which stores the addition location information already corresponding to the Asset that needs to be added |
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.