blob: 0cc85d5044a13462cb85a6a8fe20f4170275f670 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* Copyright © 2017-2019 WireGuard LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package com.wireguard.util;
/**
* Interface for objects that have a identifying key of the given type.
*/
@NonNullForAll
public interface Keyed<K> {
K getKey();
}
|