]> source.dussan.org Git - archiva.git/blob
a9600571e850f0aa62083637dbebef5cf141751e
[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.maven.artifact.Artifact;
23
24 import java.util.Comparator;
25
26 /**
27  * ArtifactComparator 
28  *
29  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
30  * @version $Id$
31  */
32 public class ArtifactComparator
33     implements Comparator
34 {
35
36     public int compare( Object arg0, Object arg1 )
37     {
38         if( arg0 == null || arg1 == null )
39         {
40             return -1;
41         }
42         
43         Artifact artifact1 = (Artifact) arg0;
44         Artifact artifact2 = (Artifact) arg1;
45         
46         int diff;
47         
48         diff = artifact1.getGroupId().compareTo( artifact2.getGroupId() );
49         if( diff != 0 )
50         {
51             return diff;
52         }
53         
54         diff = artifact1.getArtifactId().compareTo( artifact2.getArtifactId() );
55         if( diff != 0 )
56         {
57             return diff;
58         }
59         
60         return artifact1.getVersion().compareTo( artifact2.getVersion() );
61     }
62
63 }