summaryrefslogtreecommitdiffstats
path: root/src/com/google/android/libraries/backup/BackupKeyPredicate.java
blob: 6c85dbd252648b87e0d0c92be084ebc5d6365b82 (plain)
1
2
3
4
5
6
7
8
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);
}