Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getOsddLinkEnabled (0.07 sec)

  1. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/OsddHelper.java

         * @return true if OSDD link is enabled
         */
        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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Whether to enable OSDD link (OpenSearch Description Document).
         * @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>
         * comment: Whether to enable the clipboard copy icon.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top