Salome HOME
Modifications done to respect PMD rules. Versioning a document is fixed. Validation...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / SearchService.java
index cda12a1a07ab28edb54beeeba977477b8f88fc21..18a024d4b7101832881c6d0bd49d011f57e21973 100644 (file)
@@ -10,6 +10,7 @@
 package org.splat.service;
 
 import java.util.List;
+
 import org.splat.dal.bo.som.KnowledgeElement;
 import org.splat.dal.bo.som.Study;
 import org.splat.service.dto.ImportedStudyDTO;
@@ -27,7 +28,7 @@ public interface SearchService {
         * 
         * @return list of ImportedStudy DTO
         */
-       public List<ImportedStudyDTO> selectStudies();
+       List<ImportedStudyDTO> selectStudies();
 
        /**
         * Refresh lucene index for studies.
@@ -35,7 +36,7 @@ public interface SearchService {
         * @param ridlist
         *            list of studies id's
         */
-       public void reindexStudies(String[] ridlist);
+       void reindexStudies(String[] ridlist);
 
        /**
         * Find knowledge elements with given properties.
@@ -44,7 +45,7 @@ public interface SearchService {
         *            search filter parameters
         * @return the list of found knowledge elements as proxiy results of lucene search
         */
-       public List<Proxy> selectKnowledgeElementsWhere(
+       List<Proxy> selectKnowledgeElementsWhere(
                        KnowledgeElement.Properties... kprop);
 
        /**
@@ -54,7 +55,7 @@ public interface SearchService {
         *            search filter parameters
         * @return the list of found studies as proxiy results of lucene search
         */
-       public List<Proxy> selectStudiesWhere(Study.Properties... sprop);
+       List<Proxy> selectStudiesWhere(Study.Properties... sprop);
 
        /**
         * Refresh lucene index for a study.
@@ -62,5 +63,5 @@ public interface SearchService {
         * @param study
         *            the study to reindex
         */
-       public void indexStudy(Study study);
+       void indexStudy(Study study);
 }