]> source.dussan.org Git - archiva.git/blob
a294c1aa7a23c9d6b98c3eda5dae077131c798a8
[archiva.git] /
1 package org.apache.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.archiva.admin.model.beans.ManagedRepository;
23 import org.apache.archiva.consumers.AbstractMonitoredConsumer;
24 import org.apache.archiva.consumers.ConsumerException;
25 import org.apache.archiva.consumers.InvalidRepositoryContentConsumer;
26 import org.springframework.context.annotation.Scope;
27 import org.springframework.stereotype.Service;
28
29 import java.util.Date;
30 import java.util.List;
31
32 /**
33  * InvalidScanConsumer 
34  *
35  * @version $Id$
36  */
37 public class InvalidScanConsumer
38     extends AbstractMonitoredConsumer
39     implements InvalidRepositoryContentConsumer
40 {
41     /**
42      * default-value="unset-id"
43      */
44     private String id = "unset-id";
45     
46     private int processCount = 0;
47
48     public void beginScan( ManagedRepository repository, Date whenGathered )
49         throws ConsumerException
50     {
51         /* do nothing */
52     }
53
54     public void beginScan( ManagedRepository repository, Date whenGathered, boolean executeOnEntireRepo )
55         throws ConsumerException
56     {
57         beginScan( repository, whenGathered );
58     }
59
60     public void completeScan()
61     {
62         /* do nothing */
63     }
64
65     public void completeScan( boolean executeOnEntireRepo )
66     {
67         completeScan();
68     }
69
70     public List<String> getExcludes()
71     {
72         return null;
73     }
74
75     public List<String> getIncludes()
76     {
77         return null;
78     }
79
80     public void processFile( String path )
81         throws ConsumerException
82     {
83         processCount++;
84     }
85
86     public void processFile( String path, boolean executeOnEntireRepo )
87         throws ConsumerException
88     {
89         processFile( path );
90     }
91
92     public String getDescription()
93     {
94         return "Bad Content Scan Consumer (for testing)";
95     }
96
97     public String getId()
98     {
99         return id;
100     }
101
102     public boolean isPermanent()
103     {
104         return false;
105     }
106
107     public int getProcessCount()
108     {
109         return processCount;
110     }
111
112     public void setProcessCount( int processCount )
113     {
114         this.processCount = processCount;
115     }
116
117     public void setId( String id )
118     {
119         this.id = id;
120     }
121 }