- Sort Score
- Result 10 results
- Languages All
Results 51 - 55 of 55 for setPassword (0.07 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
return new NtlmPasswordAuthenticator(smbAuthentication.getDomain() == null ? "" : smbAuthentication.getDomain(), smbAuthentication.getUsername(), smbAuthentication.getPassword()); } protected ResponseData getResponseData(final String uri, final boolean includeContent) { final ResponseData responseData = new ResponseData();
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/smb1/http/NtlmHttpURLConnection.java
port, protocol, "", authMethod); if (auth == null) return null; user = auth.getUserName(); password = new String(auth.getPassword()); } catch (Exception ex) { } } Type2Message type2 = (Type2Message) message; message = new Type3Message(type2, password, domain, user,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 20.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
validateRequest(ftpClient); final FtpAuthentication auth = ftpAuthenticationHolder.get(info.toUrl()); if (auth != null && !ftpClient.login(auth.getUsername(), auth.getPassword())) { throw new CrawlerLoginFailureException("Login Failure: " + auth.getUsername() + " for " + info.toUrl()); } ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
* object which will be the case when NTLM HTTP Authentication is * used. There is no way to retrieve a users password in plain text unless * it is supplied by the user at runtime. */ public String getPassword() { return password; } /** * Return the domain and username in the format: * <tt>domain\\username</tt>. This is equivalent to <tt>toString()</tt>. */ public String getName() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
final boolean normalizeText = params == null ? true : !Constants.FALSE.equalsIgnoreCase(params.get(NORMALIZE_TEXT)); final String pdfPassword = getPassword(params); final Metadata metadata = createMetadata(resourceName, contentType, contentEncoding, pdfPassword); final Parser parser = new TikaDetectParser();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25K bytes - Viewed (0)