mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Moved web script classes and definitions out of web-client project and into remote-api
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8956 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -45,6 +45,7 @@ import org.alfresco.config.ConfigService;
|
||||
import org.alfresco.model.ApplicationModel;
|
||||
import org.alfresco.model.ContentModel;
|
||||
import org.alfresco.repo.search.SearcherException;
|
||||
import org.alfresco.repo.web.scripts.FileTypeImageUtils;
|
||||
import org.alfresco.service.cmr.dictionary.DictionaryService;
|
||||
import org.alfresco.service.cmr.dictionary.TypeDefinition;
|
||||
import org.alfresco.service.cmr.lock.LockService;
|
||||
@@ -1258,7 +1259,7 @@ public class BrowseBean implements IContextListener, Serializable
|
||||
private static final long serialVersionUID = -2690520488415178029L;
|
||||
|
||||
public Object get(Node node) {
|
||||
return Utils.getFileTypeImage(node.getName(), true);
|
||||
return FileTypeImageUtils.getFileTypeImage(node.getName(), true);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1266,7 +1267,7 @@ public class BrowseBean implements IContextListener, Serializable
|
||||
private static final long serialVersionUID = 1991254398502584389L;
|
||||
|
||||
public Object get(Node node) {
|
||||
return Utils.getFileTypeImage(node.getName(), false);
|
||||
return FileTypeImageUtils.getFileTypeImage(node.getName(), false);
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user