- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 59 for SetPassword (0.08 seconds)
-
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecrypter.java
List<Server> servers = new ArrayList<>(); for (Server server : request.getServers()) { server = server.clone(); String password = server.getPassword(); if (securityDispatcher.isAnyEncryptedString(password)) { try { if (securityDispatcher.isLegacyEncryptedString(password)) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Nov 16 13:55:43 GMT 2024 - 6K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
smbClient.setResolveSids(false); Map<String, Object> params = new HashMap<>(); SmbAuthentication auth1 = new SmbAuthentication(); auth1.setUsername("testuser1"); auth1.setPassword("test123"); SmbAuthentication[] auths = new SmbAuthentication[] { auth1 }; params.put("smb1Authentications", auths); smbClient.setInitParameterMap(params); smbClient.init();
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Tue Sep 23 06:42:59 GMT 2025 - 30K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java
@Test void wagonProviderConfigurationTest() throws InvalidRepositoryException { Server server = new Server(); server.setId("repository"); server.setUsername("jason"); server.setPassword("abc123"); Xpp3Dom configuration = new Xpp3Dom("configuration"); Xpp3Dom wagonProvider = new Xpp3Dom("wagonProvider"); wagonProvider.setValue("httpclient");Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 19.1K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
if (username != null) { UserManager userManager = factory.getUserManager(); BaseUser ftpUser = new BaseUser(); ftpUser.setName(username); ftpUser.setPassword(password); final File file = ResourceUtil.getResourceAsFile("test"); String path = file.getAbsolutePath(); ftpUser.setHomeDirectory(path); userManager.save(ftpUser);Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 21.5K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
smbClient = container.getComponent("smbClient"); Map<String, Object> params = new HashMap<>(); SmbAuthentication auth1 = new SmbAuthentication(); auth1.setUsername("testuser1"); auth1.setPassword("test123"); SmbAuthentication[] auths = new SmbAuthentication[] { auth1 }; params.put("smbAuthentications", auths); smbClient.setInitParameterMap(params); smbClient.init();
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Tue Sep 23 06:42:59 GMT 2025 - 31.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
smbAuth.setPort(fileAuth.getPort() == null ? -1 : fileAuth.getPort()); smbAuth.setUsername(fileAuth.getUsername()); smbAuth.setPassword(fileAuth.getPassword()); smbAuthList.add(smbAuth); final org.codelibs.fess.crawler.client.smb1.SmbAuthentication smb1Auth =
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 11.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
AuthenticationInfo authInfo = new AuthenticationInfo(); authInfo.setUserName(server.getUsername()); authInfo.setPassword(server.getPassword()); authInfo.setPrivateKey(server.getPrivateKey()); authInfo.setPassphrase(server.getPassphrase()); return authInfo;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
} /** * Returns the password. * @return The password. */ public String getPassword() { return password; } /** * Sets the password. * @param password The password. */ public void setPassword(final String password) { this.password = password; } /** * Returns the domain.Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Sep 18 09:30:45 GMT 2025 - 3.9K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/LegacyRepositorySystemTest.java
} @Test void testAuthenticationHandling() { Server server = new Server(); server.setId("repository"); server.setUsername("jason"); server.setPassword("abc123"); ArtifactRepository repository = repositorySystem.createArtifactRepository("repository", "http://foo", null, null, null);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.4K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationTest.java
public void test_matches() throws Exception { FtpAuthentication auth = new FtpAuthentication(); auth.setServer("hostname"); auth.setPort(21); auth.setUsername("testuser"); auth.setPassword("testpass"); assertTrue(auth.matches("ftp://hostname:21/test/aaa.html")); assertTrue(auth.matches("ftp://hostname/test/aaa.html")); assertTrue(auth.matches("ftp://hostname:21/test"));
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 3.8K bytes - Click Count (0)