- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for SimpleImpl (0.06 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
protected boolean isUseOneTimeContainer() { return true; } public void test_maxUsernameLength() throws IOException { FessProp.propMap.clear(); FessConfig fessConfig = new FessConfig.SimpleImpl() { @Override public Integer getLdapMaxUsernameLengthAsInteger() { return Integer.valueOf(-1); } };
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
final String data = "<html><body><br/><script>foo</script><noscript>bar</noscript></body></html>"; final Document document = getDocument(data); ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getCrawlerDocumentHtmlPrunedTags() { return ""; } });
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 41.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
getMockRequest().setLocale(null); assertEquals("https://discuss.codelibs.org/c/FessEN/", systemHelper.getForumLink()); ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getForumLink() { return StringUtil.EMPTY; } });
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
} }); } protected void writeFessConfig(final ZipOutputStream zos, final String id) { if (fessConfig instanceof SimpleImpl) { final Properties prop = new Properties(); ((SimpleImpl) fessConfig).keySet().stream().forEach(k -> prop.setProperty(k, fessConfig.get(k))); final ZipEntry entry = new ZipEntry(id + "/fess_config.properties");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
*/ String getMailReturnPath(); /** * The simple implementation for configuration. * @author FreeGen */ public static class SimpleImpl extends ObjectiveConfig implements FessEnv { /** The serial version UID for object serialization. (Default) */ private static final long serialVersionUID = 1L;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
assertEquals(10, view3.getQueryMap().size()); } public void test_getUrlLink() throws IOException { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; public boolean isAppendQueryParameter() { return false; } public String getIndexFieldUrl() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 15.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/QueryHelperTest.java
} private void setQueryType(final String queryType) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String get(String propertyKey) { return fessConfig.get(propertyKey); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 11 08:26:36 UTC 2024 - 39.8K bytes - Viewed (0)