- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for setDomain (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
return password; } public void setPassword(final String password) { this.password = password; } public String getDomain() { return domain; } public void setDomain(final String domain) { this.domain = domain; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthentication.java
return password; } public void setPassword(final String password) { this.password = password; } public String getDomain() { return domain; } public void setDomain(final String domain) { this.domain = domain; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java
continue; } final SmbAuthentication smbAuth = new SmbAuthentication(); smbAuth.setDomain(domain == null ? StringUtil.EMPTY : domain); smbAuth.setServer(hostname); if (StringUtil.isNotBlank(port)) { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
final Cookie cookie = new Cookie(cookieName, userCode); cookie.setMaxAge(age); cookie.setHttpOnly(httpOnly); if (StringUtil.isNotBlank(cookieDomain)) { cookie.setDomain(cookieDomain); } if (StringUtil.isNotBlank(cookiePath)) { cookie.setPath(cookiePath); } if (cookieSecure != null) { cookie.setSecure(cookieSecure);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
} } } protected NtlmPasswordAuthenticator getAuthenticator(final SmbAuthentication smbAuthentication) { return new NtlmPasswordAuthenticator(smbAuthentication.getDomain() == null ? "" : smbAuthentication.getDomain(), smbAuthentication.getUsername(), smbAuthentication.getPassword()); } protected ResponseData getResponseData(final String uri, final boolean includeContent) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 23 01:54:36 UTC 2024 - 17.9K bytes - Viewed (0)