- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 22 for setDomain (0.07 sec)
-
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/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) -
src/main/java/jcifs/http/NtlmSsp.java
byte[] ntResponse = type3.getNTResponse(); if ( ntResponse == null ) ntResponse = new byte[0]; return new NtlmPasswordAuthentication(type3.getDomain(), type3.getUser(), challenge, lmResponse, ntResponse); } } else { resp.setHeader("WWW-Authenticate", "NTLM"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmSsp.java
byte[] ntResponse = type3.getNTResponse(); if (ntResponse == null) ntResponse = new byte[0]; return new NtlmPasswordAuthentication(type3.getDomain(), type3.getUser(), challenge, lmResponse, ntResponse); } } else { resp.setHeader("WWW-Authenticate", "NTLM"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileLocationTest.java
return this.server; } /** * {@inheritDoc} * * @see jcifs.DfsReferralData#getDomain() */ @Override public String getDomain () { return null; } /** * {@inheritDoc} * * @see jcifs.DfsReferralData#getLink() */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 13:16:07 UTC 2020 - 23K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
return; } HttpSession ssn = request.getSession(); ssn.setAttribute("NtlmHttpAuth", ntlm); ssn.setAttribute( "ntlmdomain", ntlm.getDomain() ); ssn.setAttribute( "ntlmuser", ntlm.getUsername() ); } else { HttpSession ssn = request.getSession(false); if (ssn == null || ssn.getAttribute("NtlmHttpAuth") == null) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.8K 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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0)