- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getOsddLinkEnabled (0.1 sec)
-
src/test/java/org/codelibs/fess/helper/OsddHelperTest.java
public class OsddHelperTest extends UnitFessTestCase { public void test_init_nofile() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getOsddLinkEnabled() { return "auto"; } @Override public String getSsoType() { return "none"; } });
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/OsddHelper.java
} return osddFile; } protected boolean isOsddLinkEnabled() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String osddLinkEnabled = fessConfig.getOsddLinkEnabled(); if (Constants.TRUE.equalsIgnoreCase(osddLinkEnabled)) { return true; } if (!Constants.AUTO.equalsIgnoreCase(osddLinkEnabled)) { return false; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* Get the value for the key 'osdd.link.enabled'. <br> * The value is, e.g. auto <br> * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getOsddLinkEnabled(); /** * Get the value for the key 'clipboard.copy.icon.enabled'. <br> * The value is, e.g. true <br>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1)