blob: 96096f2afe1abf06623290bcc2d4061f2d1fa1df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
}
|