- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 52 for getMail (0.05 sec)
-
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
registerModifiedProperty("labeledURI"); this.labeledURI = value; } public String getMail() { checkSpecifiedProperty("mail"); return convertEmptyToNull(mail); } public void setMail(String value) { registerModifiedProperty("mail"); this.mail = value; } public String getMobile() {
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).getLabeledURI(), (et, vl) -> ((User) et).setLabeledURI(DfTypeUtil.toString(vl)), "labeledURI"); 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");
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, attrGivenName, v))); final String attrMail = fessConfig.getLdapAttrMail(); OptionalUtil.ofNullable(user.getMail()) .filter(StringUtil::isNotBlank) .ifPresent(s -> modifyReplaceEntry(modifyList, attrMail, s))
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/exception/SearchQueryException.java
* * @param message The detail message explaining the exception * @param cause The cause of this exception */ public SearchQueryException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new SearchQueryException with the specified detail message. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlException.java
*/ public class CurlException extends RuntimeException { private static final long serialVersionUID = 1L; /** * Constructs a new CurlException with the specified detail message and cause. * * @param message the detail message (which is saved for later retrieval by the {@link #getMessage()} method). * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessSystemException.java
* * @param message the detail message describing the exception * @param cause the cause of this exception */ public FessSystemException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new FessSystemException with the specified detail message. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java
* * @param message the detail message explaining the exception * @param cause the underlying cause of the exception */ public SearchEngineClientException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new SearchEngineClientException with the specified message. * * @param message the detail message explaining the exception */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/LdapOperationException.java
* Constructs a new LDAP operation exception with the specified detail message and cause. * * @param message The detail message. * @param cause The cause. */ public LdapOperationException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new LDAP operation exception with the specified detail message. * * @param message The detail message.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/GsaConfigException.java
public class GsaConfigException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new GSA configuration exception with the specified detail message and cause. * * @param message the detail message describing the configuration error * @param cause the cause of the exception */ public GsaConfigException(final String message, final Throwable cause) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/WebApiException.java
return statusCode; } /** * Constructs a WebApiException with the specified status code, message, and cause. * * @param statusCode The HTTP status code * @param message The detail message * @param cause The cause of this exception */ public WebApiException(final int statusCode, final String message, final Throwable cause) { super(message, cause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0)