Coverage Report - org.apache.maven.archiva.database.constraints.ArtifactsProcessedConstraint
 
Classes in this File Line Coverage Branch Coverage Complexity
ArtifactsProcessedConstraint
0%
0/13
0%
0/2
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  
 import java.util.Date;
 25  
 
 26  
 /**
 27  
  * ArtifactsProcessedConstraint 
 28  
  *
 29  
  * @version $Id: ArtifactsProcessedConstraint.java 718864 2008-11-19 06:33:35Z brett $
 30  
  */
 31  
 public class ArtifactsProcessedConstraint
 32  
     extends AbstractDeclarativeConstraint
 33  
     implements Constraint
 34  
 {
 35  
     private String whereClause;
 36  
 
 37  
     public ArtifactsProcessedConstraint( boolean isProcessed )
 38  0
     {
 39  0
         if ( isProcessed )
 40  
         {
 41  0
             whereClause = "whenProcessed != null";
 42  
         }
 43  
         else
 44  
         {
 45  0
             whereClause = "whenProcessed == null";
 46  
         }
 47  0
     }
 48  
 
 49  
     /**
 50  
      * A Constraint showing artifacts processed since date provided.
 51  
      * @param since
 52  
      */
 53  
     public ArtifactsProcessedConstraint( Date since )
 54  0
     {
 55  0
         whereClause = "whenProcessed > since";
 56  0
         declImports = new String[] { "import java.util.Date" };
 57  0
         declParams = new String[] { "Date since" };
 58  0
         params = new Object[] { since };
 59  0
     }
 60  
 
 61  
     public String getSortColumn()
 62  
     {
 63  0
         return "groupId";
 64  
     }
 65  
 
 66  
     public String getWhereCondition()
 67  
     {
 68  0
         return whereClause;
 69  
     }
 70  
 
 71  
 }