Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 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;
            }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top