- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for removePathMappingList (0.11 sec)
-
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
if (pathMappingList != null) { pathMappingMap.put(sessionId, pathMappingList); } else { removePathMappingList(sessionId); } } } public void removePathMappingList(final String sessionId) { pathMappingMap.remove(sessionId); } public List<PathMapping> getPathMappingList(final String sessionId) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
assertNotNull(pathMappingHelper.getPathMappingList(sessionId)); assertNull(pathMappingHelper.getPathMappingList(sessionId + "1")); pathMappingHelper.removePathMappingList(sessionId); assertNull(pathMappingHelper.getPathMappingList(sessionId)); assertNull(pathMappingHelper.getPathMappingList(sessionId + "1")); } public void test_replaceUrl() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0)