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(); }