Apparently "configuration" is the proper term, not "profile". Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
11 lines
188 B
Java
11 lines
188 B
Java
package com.wireguard.config;
|
|
|
|
/**
|
|
* Interface for classes that can perform a deep copy of their objects.
|
|
*/
|
|
|
|
public interface Copyable<T> {
|
|
T copy();
|
|
void copyFrom(T source);
|
|
}
|