]> source.dussan.org Git - archiva.git/blob
4f63154a5a1079f880eb95360bca1454ae15f514
[archiva.git] /
1 package org.apache.maven.archiva.indexer.record;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 /**
20  * The fields in a minimal artifact index record.
21  *
22  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
23  * @todo should be an enum
24  */
25 public class StandardIndexRecordFields
26 {
27     public static final String FILENAME = "filename";
28
29     public static final String GROUPID = "groupId";
30
31     public static final String GROUPID_EXACT = GROUPID + "_u";
32
33     public static final String ARTIFACTID = "artifactId";
34
35     public static final String ARTIFACTID_EXACT = ARTIFACTID + "_u";
36
37     public static final String VERSION = "version";
38
39     public static final String VERSION_EXACT = VERSION + "_u";
40
41     public static final String BASE_VERSION = "baseVersion";
42
43     public static final String BASE_VERSION_EXACT = BASE_VERSION + "_u";
44
45     public static final String TYPE = "type";
46
47     public static final String CLASSIFIER = "classifier";
48
49     public static final String PACKAGING = "packaging";
50
51     public static final String REPOSITORY = "repo";
52
53     public static final String LAST_MODIFIED = "lastModified";
54
55     public static final String FILE_SIZE = "fileSize";
56
57     public static final String MD5 = "md5";
58
59     public static final String SHA1 = "sha1";
60
61     public static final String CLASSES = "classes";
62
63     public static final String PLUGIN_PREFIX = "pluginPrefix";
64
65     public static final String FILES = "files";
66
67     public static final String INCEPTION_YEAR = "inceptionYear";
68
69     public static final String PROJECT_NAME = "projectName";
70
71     public static final String PROJECT_DESCRIPTION = "projectDesc";
72
73     public static final String DEVELOPERS = "developers";
74
75     public static final String DEPENDENCIES = "dependencies";
76
77     private StandardIndexRecordFields()
78     {
79         // No touchy!
80     }
81 }