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<>();
47 private boolean processUnmodified = false;
50 public List<String> getExcludes()
55 public void setIncludes( String includesArray[] )
57 this.includes.clear();
58 this.includes.addAll( Arrays.asList( includesArray ) );
62 public List<String> getIncludes()
70 return "test-scan-consumer";
74 public String getDescription()
76 return "Scan Consumer (for testing)";
80 public void beginScan( ManagedRepository repository, Date whenGathered )
81 throws ConsumerException
87 public void beginScan( ManagedRepository repository, Date whenGathered, boolean executeOnEntireRepo )
88 throws ConsumerException
90 beginScan( repository, whenGathered );
94 public void processFile( String path )
95 throws ConsumerException
101 public void processFile( String path, boolean executeOnEntireRepo )
108 public void completeScan()
114 public void completeScan( boolean executeOnEntireRepo )
119 public int getProcessCount()
124 public void setProcessCount( int processCount )
126 this.processCount = processCount;
130 public boolean isPermanent()
136 public boolean isProcessUnmodified()
138 return processUnmodified;
141 public void setProcessUnmodified( boolean processUnmodified )
143 this.processUnmodified = processUnmodified;