- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 29 for setDomain (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 24.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/CookieConfig.java
} /** * Gets the cookie domain. * * @return the domain */ public String getDomain() { return domain; } /** * Sets the cookie domain. * * @param domain the domain */ public void setDomain(final String domain) { this.domain = domain; } /** * Gets the cookie path. *Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 14:22:26 GMT 2026 - 3.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/CredentialsConfig.java
} /** * Gets the NTLM domain. * * @return the domain */ public String getDomain() { return domain; } /** * Sets the NTLM domain. * * @param domain the domain */ public void setDomain(final String domain) { this.domain = domain; } /** * Gets the NTLM workstation. *Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 14:22:26 GMT 2026 - 3.6K bytes - Click Count (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 32.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
} /** * {@inheritDoc} * * @see jcifs.DfsReferralData#getDomain() */ @Override public String getDomain() { return this.domain; } /** * Set the domain for this referral * * @param domain * the domain to set */ public void setDomain(final String domain) { this.domain = domain; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/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 {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 17.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
if (Constants.NTLM.equals(scheme)) { credentials.setType(CredentialsType.NTLM); final Map<String, String> parameterMap = ParameterUtil.parse(getParameters()); credentials.setDomain(parameterMap.get("domain")); credentials.setWorkstation(parameterMap.get("workstation")); } config.setCredentials(credentials); return config; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
class PropertyTests { @Test @DisplayName("Should get and set domain") void testDomain() { assertNull(referralData.getDomain()); referralData.setDomain("EXAMPLE.COM"); assertEquals("EXAMPLE.COM", referralData.getDomain()); } @Test @DisplayName("Should get and set link") void testLink() { assertNull(referralData.getLink());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 30.6K bytes - Click Count (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); } cookie.setSecure(isSecureCookie());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 14.9K bytes - Click Count (0)