Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/fetish/directory/SearchCriteriaInterface.java


1   package com.fetish.directory;
2   
3   import net.jini.core.entry.Entry;
4   import net.jini.core.lookup.ServiceID;
5   import net.jini.core.lookup.ServiceTemplate;
6   import net.jini.lookup.ServiceItemFilter;
7   
8   /**
9    * Interface for the SearchCriteria class.
10   * <br>This class allows the FADA stub to be used without the need to
11   * provide with all the classes that are used as parameters and return
12   * types (and thus avoiding to provide with all classes those classes
13   * need, and on, and on).
14   */
15  
16  public interface SearchCriteriaInterface {
17  
18      public Class[] getService();
19      public int getMaxMatches();
20      public ServiceTemplate toServiceTemplate();
21  
22  }