- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for getDomain (0.08 sec)
-
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
} /** * {@inheritDoc} * * @see jcifs.DfsReferralData#getDomain() */ @Override public String getDomain () { return this.domain; } /** * @param domain * the domain to set */ public void setDomain ( String domain ) { this.domain = domain; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 11K bytes - Viewed (0) -
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) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
} public byte[] initSecContext(byte[] token, int offset, int len) throws SmbException { switch (state) { case 1: Type1Message msg1 = new Type1Message(ntlmsspFlags, auth.getDomain(), workstation); token = msg1.toByteArray(); if (log.level >= 4) { log.println(msg1); if (log.level >= 6)
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.9K 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/jcifs/internal/RequestWithPath.java
*/ String getPath (); /** * * @return the server name */ String getServer (); /** * * @return the domain name */ String getDomain (); /** * * @return the full UNC path */ String getFullUNCPath (); /** * @param path */ void setPath ( String path ); /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/DfsReferralData.java
/** * @return the server this referral points to */ String getServer (); /** * * @return the domain this referral is for */ String getDomain (); /** * @return the share this referral points to */ String getShare (); /** * @return the number of characters from the unc path that were consumed by this referral
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
@Override public String getServer () { return this.server; } /** * {@inheritDoc} * * @see jcifs.internal.RequestWithPath#getDomain() */ @Override public String getDomain () { return this.domain; } /** * @param fullName * the fullName to set */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 09:52:11 UTC 2019 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
* * @return A <code>String</code> containing the domain for the user. */ public String getDomain() { return domain; } /** * Sets the domain for this message. * * @param domain The domain. */ public void setDomain(String domain) { this.domain = domain; } /** * Returns the username for the authenticating user.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/tests/NtlmTest.java
Type3Message t3 = new Type3Message(flags, lmResponse, ntResponse, domain, user, workstation); Type3Message parsed = new Type3Message(t3.toByteArray()); assertEquals(domain, parsed.getDomain()); assertEquals(user, parsed.getUser()); assertEquals(workstation, parsed.getWorkstation()); assertArrayEquals(lmResponse, parsed.getLMResponse());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 16 10:38:43 UTC 2018 - 4.8K 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)