1 package com.android.keychain.internal; 2 3 /** Interface for classes that provide information about keys in KeyChain. */ 4 5 public interface KeyInfoProvider { 6 /** 7 * Indicates whether a key associated with the given alias is allowed 8 * to be selected by users. 9 * @param alias Alias of the key to check. 10 * 11 * @return true if the provided alias is selectable by users. 12 */ isUserSelectable(String alias)13 public boolean isUserSelectable(String alias); 14 } 15