15 lines
265 B
Java
15 lines
265 B
Java
/*
|
|
* 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.
|
|
*/
|
|
|
|
public interface Keyed<K> {
|
|
K getKey();
|
|
}
|