Skip to content

Commit

Permalink
Merge branch 'develop' into release/1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
overheadhunter committed Jun 7, 2021
2 parents e426600 + f2cbee0 commit abca79f
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@
*/
public interface KeychainAccessProvider {

/**
* A name to display in UI elements. If required, this should be localized.
*
* @return user-friendly name (must not be null or empty)
*/
default String displayName() {
// FIXME remove default method in 1.0.0
return getClass().getSimpleName();
}

/**
* Associates a passphrase with a given key.
*
Expand Down

0 comments on commit abca79f

Please sign in to comment.