]> source.dussan.org Git - archiva.git/blob
a34da6aee24b23080e1661635a5d7939fd5a3e26
[archiva.git] /
1 package org.apache.archiva.indexer.search;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 /*
7  * Licensed to the Apache Software Foundation (ASF) under one
8  * or more contributor license agreements.  See the NOTICE file
9  * distributed with this work for additional information
10  * regarding copyright ownership.  The ASF licenses this file
11  * to you under the Apache License, Version 2.0 (the
12  * "License"); you may not use this file except in compliance
13  * with the License.  You may obtain a copy of the License at
14  *
15  *  http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing,
18  * software distributed under the License is distributed on an
19  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20  * KIND, either express or implied.  See the License for the
21  * specific language governing permissions and limitations
22  * under the License.
23  */
24
25 public class SearchFields
26 {
27     /**
28      * groupId
29      */
30     private String groupId;
31
32     /**
33      * artifactId
34      */
35     private String artifactId;
36
37     /**
38      * version
39      */
40     private String version;
41
42     /**
43      * packaging (jar, war, pom, etc.)
44      */
45     private String packaging;
46
47     /**
48      * class name or package name
49      */
50     private String className;
51     
52     /**
53      * repositories
54      */
55     private List<String> repositories = new ArrayList<String>();
56     
57     public String getGroupId()
58     {
59         return groupId;
60     }
61
62     public void setGroupId( String groupId )
63     {
64         this.groupId = groupId;
65     }
66
67     public String getArtifactId()
68     {
69         return artifactId;
70     }
71
72     public void setArtifactId( String artifactId )
73     {
74         this.artifactId = artifactId;
75     }
76
77     public String getVersion()
78     {
79         return version;
80     }
81
82     public void setVersion( String version )
83     {
84         this.version = version;
85     }
86
87     public String getPackaging()
88     {
89         return packaging;
90     }
91
92     public void setPackaging( String packaging )
93     {
94         this.packaging = packaging;
95     }
96
97     public String getClassName()
98     {
99         return className;
100     }
101
102     public void setClassName( String className )
103     {
104         this.className = className;
105     }
106
107     public List<String> getRepositories()
108     {
109         return repositories;
110     }
111
112     public void setRepositories( List<String> repositories )
113     {
114         this.repositories = repositories;
115     }
116 }