]> source.dussan.org Git - archiva.git/commitdiff
Reverting earlier change to SearchUtil
authorJames William Dumay <jdumay@apache.org>
Tue, 10 Feb 2009 06:12:32 +0000 (06:12 +0000)
committerJames William Dumay <jdumay@apache.org>
Tue, 10 Feb 2009 06:12:32 +0000 (06:12 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@742863 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-indexer/src/main/java/org/apache/archiva/indexer/search/NexusRepositorySearch.java
archiva-modules/archiva-base/archiva-indexer/src/main/java/org/apache/archiva/indexer/util/SearchUtil.java

index 597d9785504ffdc3419a5afa845fb327a202364c..cdf73f48abe0ffc195250c17feb3d62e4a9fd6f7 100644 (file)
@@ -25,6 +25,7 @@ import java.util.List;
 import java.util.Map;
 import java.util.Set;
 
+import org.apache.archiva.indexer.util.SearchUtil;
 import org.apache.lucene.search.BooleanQuery;
 import org.apache.lucene.search.BooleanClause.Occur;
 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
@@ -247,7 +248,7 @@ public class NexusRepositorySearch
         
         for ( ArtifactInfo artifactInfo : artifactInfos )
         {
-            String id = getHitId( artifactInfo.groupId, artifactInfo.artifactId );            
+            String id = SearchUtil.getHitId( artifactInfo.groupId, artifactInfo.artifactId );
             Map<String, SearchResultHit> hitsMap = results.getHitsMap();
 
             SearchResultHit hit = hitsMap.get( id );
@@ -313,7 +314,7 @@ public class NexusRepositorySearch
                 SearchResultHit hit = results.getHits().get( ( offset + i ) );
                 if( hit != null )
                 {
-                    String id = getHitId( hit.getGroupId(), hit.getArtifactId() );
+                    String id = SearchUtil.getHitId( hit.getGroupId(), hit.getArtifactId() );
                     paginated.addHit( id, hit );
                 }
                 else
@@ -327,9 +328,4 @@ public class NexusRepositorySearch
         
         return paginated;
     }
-    
-    private static String getHitId( String groupId, String artifactId )
-    {
-        return groupId + ":" + artifactId;
-    }
 }
index 3e1e7627e8fd0b824ea439ea7353dea14d2d1a06..cd15df2de06848155b9843bb95a41430ad43451f 100644 (file)
@@ -19,8 +19,6 @@ package org.apache.archiva.indexer.util;
  * under the License.
  */
 
-import org.apache.commons.lang.StringUtils;
-
 /**
  * SearchUtil - utility class for search.
  * 
@@ -28,38 +26,6 @@ import org.apache.commons.lang.StringUtils;
  */
 public class SearchUtil
 {
-    public static final String BYTECODE_KEYWORD = "bytecode:";
-
-    /**
-     * Determines whether the queryString has the bytecode keyword.
-     * 
-     * @param queryString
-     * @return
-     */
-    public static boolean isBytecodeSearch( String queryString )
-    {
-        if ( queryString.startsWith( BYTECODE_KEYWORD ) )
-        {
-            return true;
-        }
-
-        return false;
-    }
-
-    /**
-     * Removes the bytecode keyword from the query string.
-     * 
-     * @param queryString
-     * @return
-     */
-    public static String removeBytecodeKeyword( String queryString )
-    {
-        String qString = StringUtils.uncapitalize( queryString );
-        qString = StringUtils.remove( queryString, BYTECODE_KEYWORD );
-
-        return qString;
-    }
-    
     public static String getHitId( String groupId, String artifactId )
     {
         return groupId + ":" + artifactId;