KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > providers > gs > filters > JavaSpaceFilter


1 /*
2  * $Id: JavaSpaceFilter.java 3807 2006-11-06 13:13:36Z holger $
3  * --------------------------------------------------------------------------------------
4  * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
5  *
6  * The software in this package is published under the terms of the MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.providers.gs.filters;
12
13 import java.lang.reflect.InvocationTargetException JavaDoc;
14
15 import net.jini.core.entry.Entry;
16
17 import org.mule.umo.UMOFilter;
18
19 /**
20  * TODO document
21  */

22 public interface JavaSpaceFilter extends UMOFilter
23 {
24
25     public Entry getEntry()
26         throws IllegalAccessException JavaDoc, NoSuchMethodException JavaDoc, InvocationTargetException JavaDoc,
27         InstantiationException JavaDoc, ClassNotFoundException JavaDoc;
28 }
29
Popular Tags