Coverage Report - org.apache.maven.archiva.database.constraints.ArtifactVersionsConstraint
 
Classes in this File Line Coverage Branch Coverage Complexity
ArtifactVersionsConstraint
0%
0/16
0%
0/6
1.25
 
 1  
 package org.apache.maven.archiva.database.constraints;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one
 5  
  * or more contributor license agreements.  See the NOTICE file
 6  
  * distributed with this work for additional information
 7  
  * regarding copyright ownership.  The ASF licenses this file
 8  
  * to you under the Apache License, Version 2.0 (the
 9  
  * "License"); you may not use this file except in compliance
 10  
  * with the License.  You may obtain a copy of the License at
 11  
  *
 12  
  *  http://www.apache.org/licenses/LICENSE-2.0
 13  
  *
 14  
  * Unless required by applicable law or agreed to in writing,
 15  
  * software distributed under the License is distributed on an
 16  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17  
  * KIND, either express or implied.  See the License for the
 18  
  * specific language governing permissions and limitations
 19  
  * under the License.
 20  
  */
 21  
 
 22  
 import org.apache.maven.archiva.database.Constraint;
 23  
 
 24  
 /**
 25  
  * ArtifactVersionsConstraint
 26  
  * 
 27  
  * @version
 28  
  */
 29  
 public class ArtifactVersionsConstraint
 30  
     extends AbstractDeclarativeConstraint
 31  
     implements Constraint
 32  
 {
 33  0
     private String whereClause = "";
 34  
     
 35  0
     private String sortColumn = "repositoryId";
 36  
     
 37  
     public ArtifactVersionsConstraint( String repoId, String groupId, String artifactId, boolean includeWhenGathered )
 38  0
     {        
 39  0
         if( repoId != null )
 40  
         {   
 41  0
             whereClause = "repositoryId.equals(selectedRepoId) && groupId.equals(selectedGroupId) && artifactId.equals(selectedArtifactId) " 
 42  
                 + ( includeWhenGathered ? "&& whenGathered != null" : "" );                
 43  0
             declParams = new String[] { "String selectedRepoId", "String selectedGroupId", "String selectedArtifactId" };
 44  0
             params = new Object[] { repoId, groupId, artifactId };
 45  
         }
 46  
         else
 47  
         {
 48  0
             whereClause =
 49  
                 "groupId.equals(selectedGroupId) && artifactId.equals(selectedArtifactId) " +                        
 50  
                     ( includeWhenGathered ? "&& whenGathered != null" : "" );            
 51  0
             declParams = new String[] { "String selectedGroupId", "String selectedArtifactId" };
 52  0
             params = new Object[] { groupId, artifactId };
 53  
         }
 54  0
     }
 55  
     
 56  
     public ArtifactVersionsConstraint( String repoId, String groupId, String artifactId, String sortColumn )
 57  
     {   
 58  0
         this( repoId, groupId, artifactId, true );
 59  0
         this.sortColumn = sortColumn;        
 60  0
     }
 61  
         
 62  
     public String getSortColumn()
 63  
     {        
 64  0
         return sortColumn;
 65  
     }
 66  
 
 67  
     public String getWhereCondition()
 68  
     {        
 69  0
         return whereClause;
 70  
     }
 71  
 
 72  
 }