]> source.dussan.org Git - archiva.git/blob
991f7b0a21be385e6c5355a43c63b7bc1eaea71d
[archiva.git] /
1 package org.apache.maven.archiva.indexer.filecontent;
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.indexer.lucene.LuceneRepositoryContentRecord;
23 import org.apache.maven.archiva.model.ArchivaArtifact;
24
25 /**
26  * Lucene record for {@link File} contents. 
27  *
28  * @version $Id$
29  */
30 public class FileContentRecord
31     implements LuceneRepositoryContentRecord
32 {
33     private String repositoryId;
34
35     private String filename;
36     
37     /**
38      * Optional artifact reference for the file content.
39      */
40     private ArchivaArtifact artifact;
41
42     private String contents;
43
44     public String getRepositoryId()
45     {
46         return repositoryId;
47     }
48
49     public void setRepositoryId( String repositoryId )
50     {
51         this.repositoryId = repositoryId;
52     }
53
54     public String getContents()
55     {
56         return contents;
57     }
58
59     public void setContents( String contents )
60     {
61         this.contents = contents;
62     }
63
64     public String getPrimaryKey()
65     {
66         return repositoryId + ":" + filename;
67     }
68
69     @Override
70     public int hashCode()
71     {
72         final int PRIME = 31;
73         int result = 1;
74         result = PRIME * result + ( ( filename == null ) ? 0 : filename.hashCode() );
75         return result;
76     }
77
78     @Override
79     public boolean equals( Object obj )
80     {
81         if ( this == obj )
82         {
83             return true;
84         }
85
86         if ( obj == null )
87         {
88             return false;
89         }
90
91         if ( getClass() != obj.getClass() )
92         {
93             return false;
94         }
95
96         final FileContentRecord other = (FileContentRecord) obj;
97
98         if ( filename == null )
99         {
100             if ( other.filename != null )
101             {
102                 return false;
103             }
104         }
105         else if ( !filename.equals( other.filename ) )
106         {
107             return false;
108         }
109         return true;
110     }
111
112     public String getFilename()
113     {
114         return filename;
115     }
116
117     public void setFilename( String filename )
118     {
119         this.filename = filename;
120     }
121
122     public ArchivaArtifact getArtifact()
123     {
124         return artifact;
125     }
126
127     public void setArtifact( ArchivaArtifact artifact )
128     {
129         this.artifact = artifact;
130     }
131 }