]> source.dussan.org Git - archiva.git/blob
0ab62fe4609dd5bf57cd3a04d45140cc6cb0d75c
[archiva.git] /
1 package org.apache.maven.archiva.repository.scanner;
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.configuration.ManagedRepositoryConfiguration;
23 import org.apache.maven.archiva.consumers.AbstractMonitoredConsumer;
24 import org.apache.maven.archiva.consumers.ConsumerException;
25 import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
26
27 import java.util.ArrayList;
28 import java.util.Arrays;
29 import java.util.Date;
30 import java.util.List;
31
32 /**
33  * ScanConsumer 
34  *
35  * @version $Id$
36  */
37 public class KnownScanConsumer
38     extends AbstractMonitoredConsumer
39     implements KnownRepositoryContentConsumer
40 {
41     private int processCount = 0;
42
43     private List<String> includes = new ArrayList<String>();
44
45     private boolean processUnmodified = false;
46
47     public List<String> getExcludes()
48     {
49         return null;
50     }
51
52     public void setIncludes( String includesArray[] )
53     {
54         this.includes.clear();
55         this.includes.addAll( Arrays.asList( includesArray ) );
56     }
57
58     public List<String> getIncludes()
59     {
60         return includes;
61     }
62
63     public String getId()
64     {
65         return "test-scan-consumer";
66     }
67
68     public String getDescription()
69     {
70         return "Scan Consumer (for testing)";
71     }
72
73     public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered )
74         throws ConsumerException
75     {
76         /* do nothing */
77     }
78
79     public void processFile( String path )
80         throws ConsumerException
81     {
82         this.processCount++;
83     }
84
85     public void completeScan()
86     {
87         /* do nothing */
88     }
89
90     public int getProcessCount()
91     {
92         return processCount;
93     }
94
95     public void setProcessCount( int processCount )
96     {
97         this.processCount = processCount;
98     }
99
100     public boolean isPermanent()
101     {
102         return false;
103     }
104
105     public boolean isProcessUnmodified()
106     {
107         return processUnmodified;
108     }
109
110     public void setProcessUnmodified( boolean processUnmodified )
111     {
112         this.processUnmodified = processUnmodified;
113     }
114 }