blob: 6c85dbd252648b87e0d0c92be084ebc5d6365b82 [file] [log] [blame]
package com.google.android.libraries.backup;
/** A predicate that determines whether a given key should be backed up. */
public interface BackupKeyPredicate {
/** Returns whether a given key should be backed up. */
boolean shouldBeBackedUp(String key);
}