From 64c95fd653177361f7e691ab345ed54d42ef6aed Mon Sep 17 00:00:00 2001 From: jestin Date: Mon, 12 Jan 2004 09:48:49 +0000 Subject: 1.2.5 pre --- src/IvyBindListener.java | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/IvyBindListener.java (limited to 'src/IvyBindListener.java') 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 http://www.tls.cena.fr/products/ivy/ + * + * 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); + +} -- cgit v1.1