Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for initial (0.19 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                final String providerUrl, final String principal, final String credntials) {
            final Hashtable<String, String> env = new Hashtable<>();
            putEnv(env, Context.INITIAL_CONTEXT_FACTORY, initialContextFactory);
            putEnv(env, Context.SECURITY_AUTHENTICATION, securityAuthentication);
            putEnv(env, Context.PROVIDER_URL, providerUrl);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

            TermQueryBuilder builder = regTermQ("initials", initials);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setInitials_NotEqual(String initials) {
            setInitials_NotTerm(initials, null);
        }
    
        public void setInitials_NotTerm(String initials) {
            setInitials_NotTerm(initials, null);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 326.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/cbean/bs/BsUserCB.java

    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_ja.properties

    labels.user_employeeType=雇用形態
    labels.employeeType=雇用形態
    labels.user_facsimileTelephoneNumber=FAX番号
    labels.facsimileTelephoneNumber=FAX番号
    labels.user_postOfficeBox=私書箱
    labels.postOfficeBox=私書箱
    labels.user_initials=インシャル
    labels.initials=インシャル
    labels.user_carLicense=運転免許証
    labels.carLicense=運転免許証
    labels.user_mobile=携帯電話
    labels.mobile=携帯電話
    labels.user_postalAddress=住所
    labels.postalAddress=住所
    labels.user_city=市区町村
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String LDAP_PROVIDER_URL = "ldap.provider.url";
    
        public static final String LDAP_SECURITY_AUTHENTICATION = "ldap.security.authentication";
    
        public static final String LDAP_INITIAL_CONTEXT_FACTORY = "ldap.initial.context.factory";
    
        public static final String LDAP_ACCOUNT_FILTER = "ldap.account.filter";
    
        public static final String LDAP_GROUP_FILTER = "ldap.group.filter";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    ldap.attr.internationaliSDNNumber=internationaliSDNNumber
    ldap.attr.state=st
    ldap.attr.employeeType=employeeType
    ldap.attr.facsimileTelephoneNumber=facsimileTelephoneNumber
    ldap.attr.postOfficeBox=postOfficeBox
    ldap.attr.initials=initials
    ldap.attr.carLicense=carLicense
    ldap.attr.mobile=mobile
    ldap.attr.postalAddress=postalAddress
    ldap.attr.city=l
    ldap.attr.teletexTerminalIdentifier=teletexTerminalIdentifier
    ldap.attr.x121Address=x121Address
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. postOfficeBox */
        String LDAP_ATTR_POST_OFFICE_BOX = "ldap.attr.postOfficeBox";
    
        /** The key of the configuration. e.g. initials */
        String LDAP_ATTR_INITIALS = "ldap.attr.initials";
    
        /** The key of the configuration. e.g. carLicense */
        String LDAP_ATTR_CAR_LICENSE = "ldap.attr.carLicense";
    
        /** The key of the configuration. e.g. mobile */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  8. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                                String source = line;
                                if ("fess_user.user".equals(configIndex)) {
                                    source = source.replace("${fess.index.initial_password}", ComponentUtil.getComponent(FessLoginAssist.class)
                                            .encryptPassword(fessConfig.getIndexUserInitialPassword()));
                                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.homePostalAddress = value;
        }
    
        public String getInitials() {
            checkSpecifiedProperty("initials");
            return convertEmptyToNull(initials);
        }
    
        public void setInitials(String value) {
            registerModifiedProperty("initials");
            this.initials = value;
        }
    
        public String getInternationaliSDNNumber() {
            checkSpecifiedProperty("internationaliSDNNumber");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

        private static final String TEST_LABEL = "tools";
        private static String fileConfigId;
        private static String labelId;
        private static String crawlLabelId;
    
        @BeforeAll
        protected static void initAll() {
            RestAssured.baseURI = getFessUrl();
            settingTestToken();
    
            // create and execute a file crawler
            labelId = createLabel();
            crawlLabelId = createCrawlLabel();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (1)
Back to top