]> source.dussan.org Git - archiva.git/blob
2bb9db987c356e8e0f06d3ac1f1122a97d0d26ff
[archiva.git] /
1 package org.apache.archiva.admin.repository.admin;
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 import org.apache.maven.archiva.configuration.FileType;
22
23 import java.io.Serializable;
24 import java.util.ArrayList;
25 import java.util.List;
26
27 /**
28  * @author Olivier Lamy
29  */
30 public class RepositoryScanning
31     implements Serializable
32 {
33     /**
34      * Field fileTypes.
35      */
36     private List<FileType> fileTypes;
37
38     /**
39      * Field knownContentConsumers.
40      */
41     private List<String> knownContentConsumers;
42
43     /**
44      * Field invalidContentConsumers.
45      */
46     private List<String> invalidContentConsumers;
47
48     public RepositoryScanning()
49     {
50         // no op
51     }
52
53     public RepositoryScanning( List<FileType> fileTypes, List<String> knownContentConsumers,
54                                List<String> invalidContentConsumers )
55     {
56         this.fileTypes = fileTypes;
57         this.knownContentConsumers = knownContentConsumers;
58         this.invalidContentConsumers = invalidContentConsumers;
59     }
60
61     public List<FileType> getFileTypes()
62     {
63         if ( this.fileTypes == null )
64         {
65             this.fileTypes = new ArrayList<FileType>();
66         }
67         return fileTypes;
68     }
69
70     public void setFileTypes( List<FileType> fileTypes )
71     {
72         this.fileTypes = fileTypes;
73     }
74
75     public List<String> getKnownContentConsumers()
76     {
77         if ( this.knownContentConsumers == null )
78         {
79             this.knownContentConsumers = new ArrayList<String>();
80         }
81         return knownContentConsumers;
82     }
83
84     public void setKnownContentConsumers( List<String> knownContentConsumers )
85     {
86         this.knownContentConsumers = knownContentConsumers;
87     }
88
89     public List<String> getInvalidContentConsumers()
90     {
91         if ( this.invalidContentConsumers == null )
92         {
93             this.invalidContentConsumers = new ArrayList<String>();
94         }
95         return invalidContentConsumers;
96     }
97
98     public void setInvalidContentConsumers( List<String> invalidContentConsumers )
99     {
100         this.invalidContentConsumers = invalidContentConsumers;
101     }
102 }