aboutsummaryrefslogtreecommitdiff
path: root/src/IvyBindListener.java
diff options
context:
space:
mode:
authorjestin2004-01-12 09:48:49 +0000
committerjestin2004-01-12 09:48:49 +0000
commit64c95fd653177361f7e691ab345ed54d42ef6aed (patch)
treedb912d9c0a42a9010c9841a2a799fde0a3258456 /src/IvyBindListener.java
parentb06dd52e8550e16cf877a076d24eda2c91e78d7c (diff)
downloadivy-java-64c95fd653177361f7e691ab345ed54d42ef6aed.zip
ivy-java-64c95fd653177361f7e691ab345ed54d42ef6aed.tar.gz
ivy-java-64c95fd653177361f7e691ab345ed54d42ef6aed.tar.bz2
ivy-java-64c95fd653177361f7e691ab345ed54d42ef6aed.tar.xz
1.2.5 pre
Diffstat (limited to 'src/IvyBindListener.java')
-rw-r--r--src/IvyBindListener.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/IvyBindListener.java b/src/IvyBindListener.java
new file mode 100644
index 0000000..96096f2
--- /dev/null
+++ b/src/IvyBindListener.java
@@ -0,0 +1,30 @@
+package fr.dgac.ivy;
+
+/**
+ * this interface specifies the methods of a BindListener
+ *
+ * @author Yannick Jestin
+ * @author <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
+ *
+ * Changelog:
+ */
+
+public interface IvyBindListener extends java.util.EventListener {
+
+ /**
+ * invoked when a Ivy Client performs a bind
+ * @param client the peer
+ * @param int the regexp ID
+ * @param regexp the regexp
+ */
+ public abstract void bindPerformed(IvyClient client,int id, String regexp);
+
+ /**
+ * invoked when a Ivy Client performs a unbind
+ * @param client the peer
+ * @param int the regexp ID
+ * @param regexp the regexp
+ */
+ public abstract void unbindPerformed(IvyClient client,int id,String regexp);
+
+}