diff --git a/src/main/java/org/cryptomator/integrations/keychain/KeychainAccessProvider.java b/src/main/java/org/cryptomator/integrations/keychain/KeychainAccessProvider.java index e6ecafc..c280895 100644 --- a/src/main/java/org/cryptomator/integrations/keychain/KeychainAccessProvider.java +++ b/src/main/java/org/cryptomator/integrations/keychain/KeychainAccessProvider.java @@ -38,7 +38,7 @@ default void storePassphrase(String key, String displayName, CharSequence passph } /** - * @param key Unique key previously used while {@link #storePassphrase(String, CharSequence) storing a passphrase}. + * @param key Unique key previously used while {@link #storePassphrase(String, String, CharSequence)} storing a passphrase}. * @return The stored passphrase for the given key or null if no value for the given key could be found. * @throws KeychainAccessException If loading the password failed */ @@ -47,7 +47,7 @@ default void storePassphrase(String key, String displayName, CharSequence passph /** * Deletes a passphrase with a given key. * - * @param key Unique key previously used while {@link #storePassphrase(String, CharSequence) storing a passphrase}. + * @param key Unique key previously used while {@link #storePassphrase(String, String, CharSequence)} storing a passphrase}. * @throws KeychainAccessException If deleting the password failed */ void deletePassphrase(String key) throws KeychainAccessException; @@ -55,7 +55,7 @@ default void storePassphrase(String key, String displayName, CharSequence passph /** * Updates a passphrase with a given key. Noop, if there is no item for the given key. * - * @param key Unique key previously used while {@link #storePassphrase(String, CharSequence) storing a passphrase}. + * @param key Unique key previously used while {@link #storePassphrase(String, String, CharSequence)} storing a passphrase}. * @param passphrase The secret to be updated in this keychain. * @throws KeychainAccessException If changing the password failed * @deprecated Please use {@link #changePassphrase(String, String, CharSequence)} instead @@ -66,7 +66,7 @@ default void storePassphrase(String key, String displayName, CharSequence passph /** * Updates a passphrase with a given key and stores a name for that key. Noop, if there is no item for the given key. * - * @param key Unique key previously used while {@link #storePassphrase(String, CharSequence) storing a passphrase}. + * @param key Unique key previously used while {@link #storePassphrase(String, String, CharSequence)} storing a passphrase}. * @param displayName The according name to the key. That's the name of the vault displayed in the UI. * It's passed to the keychain as an additional information about the vault besides the key. * The parameter does not need to be unique or be checked by the keychain.