*/
@Override
public AssetRepository[] getAssetRepositories() {
// Fetch the cache of the module information for the given asset URI.
// If null, then we log an error and return an empty array.
CachedModule cachedModule = getCachedModule();
if (cachedModule == null) {
logger.warning("Unable to find module information for " +
getAssetURI().toExternalForm());
return new ModuleAssetRepository[] {};
}