]> source.dussan.org Git - archiva.git/blob
23a3acf5c3e3559996447fb278bcc018f73fb29a
[archiva.git] /
1 package org.apache.archiva.maven2.model;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21
22 import javax.xml.bind.annotation.XmlRootElement;
23 import javax.xml.bind.annotation.XmlTransient;
24 import java.io.Serializable;
25 import java.util.ArrayList;
26 import java.util.List;
27
28 /**
29  * @author Olivier Lamy
30  */
31 @XmlRootElement( name = "treeEntry" )
32 public class TreeEntry
33     implements Serializable
34 {
35
36     private List<TreeEntry> childs = new ArrayList<>();
37
38     private Artifact artifact;
39
40     private TreeEntry parent;
41
42     public TreeEntry()
43     {
44         // no op
45     }
46
47     public TreeEntry( Artifact artifact )
48     {
49         this.artifact = artifact;
50     }
51
52
53     public Artifact getArtifact()
54     {
55         return artifact;
56     }
57
58     public void setArtifact( Artifact artifact )
59     {
60         this.artifact = artifact;
61     }
62
63     public List<TreeEntry> getChilds()
64     {
65         return childs;
66     }
67
68     public void setChilds( List<TreeEntry> childs )
69     {
70         this.childs = childs;
71     }
72
73     @XmlTransient
74     public TreeEntry getParent()
75     {
76         return parent;
77     }
78
79     public void setParent( TreeEntry parent )
80     {
81         this.parent = parent;
82     }
83
84     @Override
85     public boolean equals( Object o )
86     {
87         if ( this == o )
88         {
89             return true;
90         }
91         if ( !( o instanceof TreeEntry ) )
92         {
93             return false;
94         }
95
96         TreeEntry treeEntry = (TreeEntry) o;
97
98         if ( artifact != null ? !artifact.equals( treeEntry.artifact ) : treeEntry.artifact != null )
99         {
100             return false;
101         }
102
103         return true;
104     }
105
106     @Override
107     public int hashCode()
108     {
109         return artifact != null ? artifact.hashCode() : 0;
110     }
111 }