Salome HOME
2482843501fdbc38b273f200fce0297281d328fd
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / SearchService.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   05.10.2012
6  * @author         $Author$
7  * @version        $Revision$
8  *****************************************************************************/
9
10 package org.splat.service; 
11
12 import java.util.List;
13
14 import org.splat.dal.bo.som.KnowledgeElement;
15 import org.splat.dal.bo.som.Study;
16 import org.splat.service.dto.Proxy;
17
18 /**
19  * @author rkv
20  *
21  */
22 public interface SearchService {
23
24         public List<Proxy> selectKnowledgeElementsWhere (KnowledgeElement.Properties... kprop);
25         public List<Proxy> selectStudiesWhere (Study.Properties... sprop);
26         public void indexStudy (Study study);
27 }