本文整理了Java中org.nuxeo.ecm.directory.Directory.getCache()
方法的一些代码示例,展示了Directory.getCache()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Directory.getCache()
方法的具体详情如下:
包路径:org.nuxeo.ecm.directory.Directory
类名称:Directory
方法名:getCache
[英]Gets the cache instance of the directory
[中]获取目录的缓存实例
代码示例来源:origin: org.nuxeo.ecm.platform/nuxeo-platform-directory-api
@Override
public DocumentModel getEntry(String id, boolean fetchReferences) {
if (!hasPermission(SecurityConstants.READ)) {
return null;
}
if (readAllColumns) {
// bypass cache when reading all columns
return getEntryFromSource(id, fetchReferences);
}
return directory.getCache().getEntry(id, this, fetchReferences);
}
代码示例来源:origin: toutatice-services.carto-nat/toutatice-carto-nat-ecm
} else {
if(entryId != null){
DirectoryCache cache = directory.getCache();
log.error("Session: " + session + "Vocabulary " + directoryName + " entry: " + entryId + " == Entry KO: directoryCache" + directory.getCache() + " / entryCache: " + directory.getCache().getEntryCache()
+ " / entryCacheWithoutReferences: " + directory.getCache().getEntryCacheWithoutReferences());
代码示例来源:origin: opentoutatice-ecm.platform/opentoutatice-ecm-platform-automation
cacheKeys.add(userNameLowerCase);
userDirectory.getCache().invalidate(cacheKeys);
内容来源于网络,如有侵权,请联系作者删除!