View Javadoc

1   package fr.ove.utils;
2   
3   import fr.ove.utils.Connection;
4   
5   /***
6   * A connection handler.<BR>
7   */
8   public interface ConnectionHandler {
9       /***
10      * Handles the specified connection.
11      * @param connection the connection to handle.
12      */
13      public void handleConnection(Connection connection);
14  }