]> source.dussan.org Git - archiva.git/blob
717b8ba589b55fec65389a5fb30f91a08bc39da6
[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  *
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     @Override
49     public void beginScan( ManagedRepository repository, Date whenGathered )
50         throws ConsumerException
51     {
52         /* do nothing */
53     }
54
55     @Override
56     public void beginScan( ManagedRepository repository, Date whenGathered, boolean executeOnEntireRepo )
57         throws ConsumerException
58     {
59         beginScan( repository, whenGathered );
60     }
61
62     @Override
63     public void completeScan()
64     {
65         /* do nothing */
66     }
67
68     @Override
69     public void completeScan( boolean executeOnEntireRepo )
70     {
71         completeScan();
72     }
73
74     @Override
75     public List<String> getExcludes()
76     {
77         return null;
78     }
79
80     @Override
81     public List<String> getIncludes()
82     {
83         return null;
84     }
85
86     @Override
87     public void processFile( String path )
88         throws ConsumerException
89     {
90         processCount++;
91     }
92
93     @Override
94     public void processFile( String path, boolean executeOnEntireRepo )
95         throws ConsumerException
96     {
97         processFile( path );
98     }
99
100     @Override
101     public String getDescription()
102     {
103         return "Bad Content Scan Consumer (for testing)";
104     }
105
106     @Override
107     public String getId()
108     {
109         return id;
110     }
111
112     @Override
113     public boolean isPermanent()
114     {
115         return false;
116     }
117
118     public int getProcessCount()
119     {
120         return processCount;
121     }
122
123     public void setProcessCount( int processCount )
124     {
125         this.processCount = processCount;
126     }
127
128     public void setId( String id )
129     {
130         this.id = id;
131     }
132 }