mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
18 lines
417 B
Java
18 lines
417 B
Java
package org.briarproject.api.event;
|
|
|
|
import org.briarproject.api.keyagreement.KeyAgreementResult;
|
|
|
|
/** An event that is broadcast when a BQP protocol completes. */
|
|
public class KeyAgreementFinishedEvent extends Event {
|
|
|
|
private final KeyAgreementResult result;
|
|
|
|
public KeyAgreementFinishedEvent(KeyAgreementResult result) {
|
|
this.result = result;
|
|
}
|
|
|
|
public KeyAgreementResult getResult() {
|
|
return result;
|
|
}
|
|
}
|