]> source.dussan.org Git - archiva.git/blob
37bfb81060428607d5cf66237d88c530303b4197
[archiva.git] /
1 package org.apache.maven.archiva.plugins.dev.functors;
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.commons.collections.Predicate;
23 import org.apache.maven.model.Dependency;
24 import org.codehaus.plexus.util.StringUtils;
25
26 /**
27  * MatchingDependencyPredicate 
28  *
29  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
30  * @version $Id$
31  */
32 public class MatchingDependencyPredicate
33     implements Predicate
34 {
35     private Dependency selectedDep;
36     
37     public MatchingDependencyPredicate( Dependency selectedDep )
38     {
39         this.selectedDep = selectedDep;
40     }
41
42     public boolean evaluate( Object input )
43     {
44         boolean satisfies = false;
45
46         if ( input instanceof Dependency )
47         {
48             Dependency dep = (Dependency) input;
49             if ( StringUtils.equals( dep.getArtifactId(), selectedDep.getArtifactId() )
50                  && StringUtils.equals( dep.getGroupId(), selectedDep.getGroupId() )
51                  && StringUtils.equals( dep.getType(), selectedDep.getType() ))
52             {
53                 // So far, so good. groupId/artifactId/type match.
54                 satisfies = true;
55                 
56                 // Test classifier (if defined)
57                 if( StringUtils.isNotEmpty( selectedDep.getClassifier() ) )
58                 {
59                     satisfies = StringUtils.equals( dep.getClassifier(), selectedDep.getClassifier() );
60                 }
61             }
62         }
63
64         return satisfies;
65     }
66 }