]> source.dussan.org Git - archiva.git/blob
870b9c3ed4e50a319d3f62da7663c22b370f0762
[archiva.git] /
1 package org.apache.archiva.rest.api.model;
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
22 import javax.xml.bind.annotation.XmlRootElement;
23 import java.io.Serializable;
24 import java.util.ArrayList;
25 import java.util.List;
26
27 /**
28  * @author Olivier Lamy
29  */
30 @XmlRootElement( name = "repositoryScanning" )
31 public class RepositoryScanning
32     implements Serializable
33 {
34     /**
35      * Field fileTypes.
36      */
37     private List<FileType> fileTypes;
38
39     /**
40      * Field knownContentConsumers.
41      */
42     private List<String> knownContentConsumers;
43
44     /**
45      * Field invalidContentConsumers.
46      */
47     private List<String> invalidContentConsumers;
48
49     public RepositoryScanning()
50     {
51         // no op
52     }
53
54     public RepositoryScanning( List<FileType> fileTypes, List<String> knownContentConsumers,
55                                List<String> invalidContentConsumers )
56     {
57         this.fileTypes = fileTypes;
58         this.knownContentConsumers = knownContentConsumers;
59         this.invalidContentConsumers = invalidContentConsumers;
60     }
61
62     public List<FileType> getFileTypes()
63     {
64         if ( this.fileTypes == null )
65         {
66             this.fileTypes = new ArrayList<FileType>();
67         }
68         return fileTypes;
69     }
70
71     public void setFileTypes( List<FileType> fileTypes )
72     {
73         this.fileTypes = fileTypes;
74     }
75
76     public List<String> getKnownContentConsumers()
77     {
78         if ( this.knownContentConsumers == null )
79         {
80             this.knownContentConsumers = new ArrayList<String>();
81         }
82         return knownContentConsumers;
83     }
84
85     public void setKnownContentConsumers( List<String> knownContentConsumers )
86     {
87         this.knownContentConsumers = knownContentConsumers;
88     }
89
90     public List<String> getInvalidContentConsumers()
91     {
92         if ( this.invalidContentConsumers == null )
93         {
94             this.invalidContentConsumers = new ArrayList<String>();
95         }
96         return invalidContentConsumers;
97     }
98
99     public void setInvalidContentConsumers( List<String> invalidContentConsumers )
100     {
101         this.invalidContentConsumers = invalidContentConsumers;
102     }
103
104     @Override
105     public String toString()
106     {
107         final StringBuilder sb = new StringBuilder();
108         sb.append( "RepositoryScanning" );
109         sb.append( "{fileTypes=" ).append( fileTypes );
110         sb.append( ", knownContentConsumers=" ).append( knownContentConsumers );
111         sb.append( ", invalidContentConsumers=" ).append( invalidContentConsumers );
112         sb.append( '}' );
113         return sb.toString();
114     }
115 }