]> source.dussan.org Git - archiva.git/blob
8ee45fa9d54d987480b2331b9061110c18546026
[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     public int hashCode()
70     {
71         final int PRIME = 31;
72         int result = 1;
73         result = PRIME * result + ( ( filename == null ) ? 0 : filename.hashCode() );
74         return result;
75     }
76
77     public boolean equals( Object obj )
78     {
79         if ( this == obj )
80         {
81             return true;
82         }
83
84         if ( obj == null )
85         {
86             return false;
87         }
88
89         if ( getClass() != obj.getClass() )
90         {
91             return false;
92         }
93
94         final FileContentRecord other = (FileContentRecord) obj;
95
96         if ( filename == null )
97         {
98             if ( other.filename != null )
99             {
100                 return false;
101             }
102         }
103         else if ( !filename.equals( other.filename ) )
104         {
105             return false;
106         }
107         return true;
108     }
109
110     public String getFilename()
111     {
112         return filename;
113     }
114
115     public void setFilename( String filename )
116     {
117         this.filename = filename;
118     }
119
120     public ArchivaArtifact getArtifact()
121     {
122         return artifact;
123     }
124
125     public void setArtifact( ArchivaArtifact artifact )
126     {
127         this.artifact = artifact;
128     }
129 }