* (e.g. art, client, etc). Look for the entry that matches.
*/
Map<DeployedAsset, File> assetMap = AssetDeployer.getFileMap();
Iterator<DeployedAsset> it = assetMap.keySet().iterator();
while (it.hasNext() == true) {
DeployedAsset asset = it.next();
if (asset.assetType.equals("common") == true || asset.assetType.equals("client") == true) {
String files[] = assetMap.get(asset).list();
if (files == null) {
continue;
}