- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getMobile (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
public void setMail(String value) { registerModifiedProperty("mail"); this.mail = value; } public String getMobile() { checkSpecifiedProperty("mobile"); return convertEmptyToNull(mobile); } public void setMobile(String value) { registerModifiedProperty("mobile"); this.mobile = value; } public String getName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 22.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/UserDbm.java
setupEpg(_epgMap, et -> ((User) et).getMail(), (et, vl) -> ((User) et).setMail(DfTypeUtil.toString(vl)), "mail"); setupEpg(_epgMap, et -> ((User) et).getMobile(), (et, vl) -> ((User) et).setMobile(DfTypeUtil.toString(vl)), "mobile"); setupEpg(_epgMap, et -> ((User) et).getName(), (et, vl) -> ((User) et).setName(DfTypeUtil.toString(vl)), "name");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
.forEach(v -> modifyDeleteEntry(modifyList, attrCarLicense, v))); final String attrMobile = fessConfig.getLdapAttrMobile(); OptionalUtil.ofNullable(user.getMobile()) .filter(StringUtil::isNotBlank) .ifPresent(s -> modifyReplaceEntry(modifyList, attrMobile, s)) .orElse(() -> getAttributeValueList(result, attrMobile).stream()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java
result.setLabeledURI(DfTypeUtil.toString(source.get("labeledURI"))); result.setMail(DfTypeUtil.toString(source.get("mail"))); result.setMobile(DfTypeUtil.toString(source.get("mobile"))); result.setName(DfTypeUtil.toString(source.get("name"))); result.setPager(DfTypeUtil.toString(source.get("pager")));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12K bytes - Viewed (0)