01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.search.rdm;
07:
08: /**
09: * Callback interface. Use this to implement specific callback functions.
10: */
11: public interface RDMCallback {
12:
13: public void callback(Object c) throws Exception;
14:
15: }
|