]> source.dussan.org Git - archiva.git/blob
e61bcf2e87cd3d8c00fc5015ccdfdb3424090b65
[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 java.util.Date;
23 import java.util.List;
24
25 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
26 import org.apache.maven.archiva.consumers.AbstractMonitoredConsumer;
27 import org.apache.maven.archiva.consumers.ConsumerException;
28 import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
29
30 /**
31  * SampleKnownConsumer 
32  *
33  * @version $Id$
34  */
35 public class SampleKnownConsumer
36   extends AbstractMonitoredConsumer
37     implements KnownRepositoryContentConsumer
38 {
39     /**
40      * default-value="unset-id"
41      */
42     private String id = "unset-id";
43     
44     public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered )
45         throws ConsumerException
46     {
47         /* nothing to do */
48     }
49
50     public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered, boolean executeOnEntireRepo )
51         throws ConsumerException
52     {
53         beginScan( repository, whenGathered );
54     }
55
56     public void completeScan()
57     {
58         /* nothing to do */
59     }
60
61     public void completeScan( boolean executeOnEntireRepo )
62     {
63         completeScan();
64     }
65
66     public List<String> getExcludes()
67     {
68         return null;
69     }
70
71     public List<String> getIncludes()
72     {
73         return null;
74     }
75
76     public void processFile( String path )
77         throws ConsumerException
78     {
79         /* nothing to do */
80     }
81
82     public void processFile( String path, boolean executeOnEntireRepo )
83         throws Exception
84     {
85         processFile( path );
86     }
87
88     public String getDescription()
89     {
90         return "Sample Known Consumer";
91     }
92
93     public String getId()
94     {
95         return id;
96     }
97
98     public boolean isPermanent()
99     {
100         return false;
101     }
102
103     public void setId( String id )
104     {
105         this.id = id;
106     }
107 }