Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setCarLicense (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setBusinessCategory(DfTypeUtil.toString(source.get("businessCategory")));
                result.setCarLicense(DfTypeUtil.toString(source.get("carLicense")));
                result.setCity(DfTypeUtil.toString(source.get("city")));
                result.setDepartmentNumber(DfTypeUtil.toString(source.get("departmentNumber")));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

            this.businessCategory = value;
        }
    
        public String getCarLicense() {
            checkSpecifiedProperty("carLicense");
            return convertEmptyToNull(carLicense);
        }
    
        public void setCarLicense(String value) {
            registerModifiedProperty("carLicense");
            this.carLicense = value;
        }
    
        public String getCity() {
            checkSpecifiedProperty("city");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/UserDbm.java

                    "businessCategory");
            setupEpg(_epgMap, et -> ((User) et).getCarLicense(), (et, vl) -> ((User) et).setCarLicense(DfTypeUtil.toString(vl)), "carLicense");
            setupEpg(_epgMap, et -> ((User) et).getCity(), (et, vl) -> ((User) et).setCity(DfTypeUtil.toString(vl)), "city");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    setAttributeValue(result, fessConfig.getLdapAttrInitials(), o -> user.setInitials(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrCarLicense(), o -> user.setCarLicense(o.toString()));
                    setAttributeValue(result, fessConfig.getLdapAttrMobile(), o -> user.setMobile(o.toString()));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top