]> source.dussan.org Git - archiva.git/blob
f5107a36c42f27a57a62441bc3113e47c5fb35cd
[archiva.git] /
1 package org.apache.archiva.rest.services.utils;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.apache.archiva.admin.model.beans.ManagedRepository;
22 import org.apache.archiva.consumers.ConsumerException;
23 import org.apache.archiva.consumers.ConsumerMonitor;
24 import org.apache.archiva.consumers.InvalidRepositoryContentConsumer;
25 import org.springframework.stereotype.Service;
26
27 import java.util.Date;
28 import java.util.List;
29
30 /**
31  * @author Olivier Lamy
32  */
33 @Service( "InvalidRepositoryContentConsumer#mock" )
34 public class MockInvalidRepositoryContentConsumer
35     implements InvalidRepositoryContentConsumer
36 {
37     public String getId()
38     {
39         return "foo";
40     }
41
42     public String getDescription()
43     {
44         return "the foo";
45     }
46
47     public boolean isPermanent()
48     {
49         return false;
50     }
51
52     public void addConsumerMonitor( ConsumerMonitor monitor )
53     {
54         //To change body of implemented methods use File | Settings | File Templates.
55     }
56
57     public void removeConsumerMonitor( ConsumerMonitor monitor )
58     {
59         //To change body of implemented methods use File | Settings | File Templates.
60     }
61
62     public List<String> getIncludes()
63     {
64         return null;  //To change body of implemented methods use File | Settings | File Templates.
65     }
66
67     public List<String> getExcludes()
68     {
69         return null;  //To change body of implemented methods use File | Settings | File Templates.
70     }
71
72     public void beginScan( ManagedRepository repository, Date whenGathered )
73         throws ConsumerException
74     {
75         //To change body of implemented methods use File | Settings | File Templates.
76     }
77
78     public void beginScan( ManagedRepository repository, Date whenGathered, boolean executeOnEntireRepo )
79         throws ConsumerException
80     {
81         //To change body of implemented methods use File | Settings | File Templates.
82     }
83
84     public void processFile( String path )
85         throws ConsumerException
86     {
87         //To change body of implemented methods use File | Settings | File Templates.
88     }
89
90     public void processFile( String path, boolean executeOnEntireRepo )
91         throws Exception
92     {
93         //To change body of implemented methods use File | Settings | File Templates.
94     }
95
96     public void completeScan()
97     {
98         //To change body of implemented methods use File | Settings | File Templates.
99     }
100
101     public void completeScan( boolean executeOnEntireRepo )
102     {
103         //To change body of implemented methods use File | Settings | File Templates.
104     }
105
106     public boolean isProcessUnmodified()
107     {
108         return false;  //To change body of implemented methods use File | Settings | File Templates.
109     }
110 }