01: /**
02: * @copyright
03: * ====================================================================
04: * Copyright (c) 2003-2005 CollabNet. All rights reserved.
05: *
06: * This software is licensed as described in the file COPYING, which
07: * you should have received as part of this distribution. The terms
08: * are also available at http://subversion.tigris.org/license-1.html.
09: * If newer versions of this license are posted there, you may use a
10: * newer version instead, at your option.
11: *
12: * This software consists of voluntary contributions made by many
13: * individuals. For exact contribution history, see the revision
14: * history and logs, available at http://subversion.tigris.org/.
15: * ====================================================================
16: * @endcopyright
17: */package org.tigris.subversion.javahl;
18:
19: /**
20: * Subversion notification interface.
21: *
22: * Implement this interface and implement the onNotify method
23: * to provide a custom notification handler to the SVNClient
24: * class.
25: * If you need to pass extra information to the notification
26: * handler then just add these to you implementing class
27: *
28: * @since 1.2
29: */
30: public interface Notify2 {
31: /**
32: * Handler for Subversion notifications.
33: *
34: * Override this function to allow Subversion to
35: * send notifications
36: * @param info everything to know about this event
37: */
38: public void onNotify(NotifyInformation info);
39: }
|