Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

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

            setupEpg(_epgMap, et -> ((User) et).getDestinationIndicator(),
                    (et, vl) -> ((User) et).setDestinationIndicator(DfTypeUtil.toString(vl)), "destinationIndicator");
            setupEpg(_epgMap, et -> ((User) et).getDisplayName(), (et, vl) -> ((User) et).setDisplayName(DfTypeUtil.toString(vl)),
                    "displayName");
            setupEpg(_epgMap, et -> ((User) et).getEmployeeNumber(), (et, vl) -> ((User) et).setEmployeeNumber(DfTypeUtil.toString(vl)),
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                            for (final String lang : supportedLanguages) {
                                final Locale locale = LocaleUtils.toLocale(lang);
                                final String label = locale.getDisplayName(displayLocale);
                                final Map<String, String> map = new HashMap<>(2);
                                map.put(Constants.ITEM_LABEL, label);
                                map.put(Constants.ITEM_VALUE, lang);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top