- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setPassphrase (3.78 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java
* * @return passphrase of the private key file */ public String getPassphrase() { return passphrase; } /** * Set the passphrase of the private key file. * * @param passphrase passphrase of the private key file */ public void setPassphrase(final String passphrase) { this.passphrase = passphrase; } /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
authInfo.setPassword(server.getPassword()); authInfo.setPrivateKey(server.getPrivateKey()); authInfo.setPassphrase(server.getPassphrase()); return authInfo; } } } } } // empty one to prevent NPE
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
authentication.setPrivateKey(server.getPrivateKey()); authentication.setPassphrase(server.getPassphrase()); repository.setAuthentication(authentication); } else { repository.setAuthentication(null); } } }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0)