Package org.openxava.tab.impl
Interface ISearch
-
- All Known Subinterfaces:
IEntityTabImpl
,ITabProvider
- All Known Implementing Classes:
EntityTab
,JPATabProvider
,TabProviderBase
public interface ISearch
Allows search specifying a concrete condition.It uses EJB exceptions to facilitate a remote implementation.
- Author:
- Javier Paniza
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
search(java.lang.String condition, java.lang.Object key)
Execute search.
-
-
-
Method Detail
-
search
void search(java.lang.String condition, java.lang.Object key) throws javax.ejb.FinderException, java.rmi.RemoteException
Execute search.If there are no object then generate a empty result, but does not throw a exception.
- Parameters:
condition
- Condition to use in search.key
- Key to send to search- Throws:
javax.ejb.FinderException
- Any logic problem on searchjava.rmi.RemoteException
- Any system problem on search
-
-