- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for authenticationInfo (0.09 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonManager.java
/** * this method is only here for backward compat (project-info-reports:dependencies) * the default implementation will return an empty AuthenticationInfo * * @param id an id * @return corresponding authentication info */ AuthenticationInfo getAuthenticationInfo(String id); ProxyInfo getProxy(String protocol); void getArtifact(Artifact artifact, ArtifactRepository repository)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
settingsDecrypter.decrypt(new DefaultSettingsDecryptionRequest(server)); server = result.getServer(); AuthenticationInfo authInfo = new AuthenticationInfo(); authInfo.setUserName(server.getUsername()); authInfo.setPassword(server.getPassword());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
} else { wagon.connect(new Repository(repository.getId(), repository.getUrl())); } } private AuthenticationInfo authenticationInfo(ArtifactRepository repository) { AuthenticationInfo ai = new AuthenticationInfo(); ai.setUserName(repository.getAuthentication().getUsername()); ai.setPassword(repository.getAuthentication().getPassword()); return ai;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.9K bytes - Viewed (0)