aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/core/InitCallback.java
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2014-04-07 00:26:06 +0000
committerFlorian Dold <florian.dold@gmail.com>2014-04-07 00:26:06 +0000
commitd33161cddda663720ea93c483ed6e3e7511e995b (patch)
tree7413b2aace2d2673e083369b22126d731a8fabaf /src/main/java/org/gnunet/core/InitCallback.java
parenta5a49ee6c7e87b0fb8abae6127713e8ef3c38edb (diff)
downloadgnunet-java-d33161cddda663720ea93c483ed6e3e7511e995b.tar.gz
gnunet-java-d33161cddda663720ea93c483ed6e3e7511e995b.zip
docs / fixed fixme in crypto
Diffstat (limited to 'src/main/java/org/gnunet/core/InitCallback.java')
-rw-r--r--src/main/java/org/gnunet/core/InitCallback.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/org/gnunet/core/InitCallback.java b/src/main/java/org/gnunet/core/InitCallback.java
index 889f8cf..7b3548f 100644
--- a/src/main/java/org/gnunet/core/InitCallback.java
+++ b/src/main/java/org/gnunet/core/InitCallback.java
@@ -26,5 +26,11 @@ import org.gnunet.util.PeerIdentity;
26 * Called once the handshake with core was successful. 26 * Called once the handshake with core was successful.
27 */ 27 */
28public interface InitCallback { 28public interface InitCallback {
29 /**
30 * Called once the handshake with core was successful.
31 *
32 * @param myIdentity the identity of the peer that runs
33 * the core service we connected to
34 */
29 void onInit(PeerIdentity myIdentity); 35 void onInit(PeerIdentity myIdentity);
30} 36}