- Sort Score
- Result 10 results
- Languages All
Results 31 - 35 of 35 for setDomain (0.04 sec)
-
src/main/java/jcifs/smb1/http/NtlmServlet.java
return; } final HttpSession ssn = request.getSession(); ssn.setAttribute("NtlmHttpAuth", ntlm); ssn.setAttribute("ntlmdomain", ntlm.getDomain()); ssn.setAttribute("ntlmuser", ntlm.getUsername()); } else { final HttpSession ssn = request.getSession(false); if (ssn == null || ssn.getAttribute("NtlmHttpAuth") == null) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
// restores almost everything that was modified, except the path. rpath.setPath(savedPath); rpath.setFullUNCPath(rpath.getDomain(), rpath.getServer(), savedFullPath); } if (response != null) { response.reset(); } try (SmbTreeHandle th = connectWrapException(loc)) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
@Override public String getFullUNCPath() { return this.fullPath; } /** * {@inheritDoc} * * @see jcifs.internal.RequestWithPath#getDomain() */ @Override public String getDomain() { return this.domain; } /** * {@inheritDoc} * * @see jcifs.internal.RequestWithPath#getServer() */ @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
void testFullUNCPathProperties() { testBlock.setFullUNCPath("DOMAIN", "SERVER", "\\\\server\\share\\path"); assertEquals("DOMAIN", testBlock.getDomain()); assertEquals("SERVER", testBlock.getServer()); assertEquals("\\\\server\\share\\path", testBlock.getFullUNCPath()); } @Test @DisplayName("Test TID property")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
this.unicodeHash = unicodeHash; hashesExternal = true; } /** * Returns the domain. * * @return the authentication domain */ public String getDomain() { return domain; } /** * Returns the username. * * @return the username */ public String getUsername() { return username; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0)