aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/java/com/wireguard/android/util/Keyed.java
blob: d79fdb97ff94e58f1ca69095bd3a5bdddd043b45 (plain) (blame)
1
2
3
4
5
6
7
8
9
package com.wireguard.android.util;

/**
 * Interface for objects that have a identifying key of the given type.
 */

public interface Keyed<K> {
    K getKey();
}