Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getOsddLinkEnabled (0.22 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";
                }
            });
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. 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;
            }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  3. 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>
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
Back to top