1 package org.apache.archiva.repository.scanner;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
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.KnownRepositoryContentConsumer;
26 import org.springframework.context.annotation.Scope;
27 import org.springframework.stereotype.Service;
29 import java.util.ArrayList;
30 import java.util.Arrays;
31 import java.util.Date;
32 import java.util.List;
39 public class KnownScanConsumer
40 extends AbstractMonitoredConsumer
41 implements KnownRepositoryContentConsumer
43 private int processCount = 0;
45 private List<String> includes = new ArrayList<String>();
47 private boolean processUnmodified = false;
49 public List<String> getExcludes()
54 public void setIncludes( String includesArray[] )
56 this.includes.clear();
57 this.includes.addAll( Arrays.asList( includesArray ) );
60 public List<String> getIncludes()
67 return "test-scan-consumer";
70 public String getDescription()
72 return "Scan Consumer (for testing)";
75 public void beginScan( ManagedRepository repository, Date whenGathered )
76 throws ConsumerException
81 public void beginScan( ManagedRepository repository, Date whenGathered, boolean executeOnEntireRepo )
82 throws ConsumerException
84 beginScan( repository, whenGathered );
87 public void processFile( String path )
88 throws ConsumerException
93 public void processFile( String path, boolean executeOnEntireRepo )
99 public void completeScan()
104 public void completeScan( boolean executeOnEntireRepo )
109 public int getProcessCount()
114 public void setProcessCount( int processCount )
116 this.processCount = processCount;
119 public boolean isPermanent()
124 public boolean isProcessUnmodified()
126 return processUnmodified;
129 public void setProcessUnmodified( boolean processUnmodified )
131 this.processUnmodified = processUnmodified;