public class ResolverURLUtils
extends java.lang.Object
Some API functions accept resolver URL's as parameters.
This class provides an easy way to generate these URL strings
This example copies all of the files in the directory with an id of 5 to the directory with the id of 6
MBAPI.resolverCopy(MBAPI.getDirectoryURL(5), 6, new function(){})
The same function can be called with any resolver URL
MBAPI.resolverCopy(MBAPI.getSavedSelectionURL(3), 6, new function(){})
MBAPI.resolverCopy(MBAPI.getAssetURL([123456,654321]), 6, new function(){})
MBAPI.resolverCopy(MBAPI.getCurrentSelectionURL(), 6, new function(){})