1 package org.apache.maven.archiva.consumers;
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 java.util.HashSet;
23 import java.util.Iterator;
24 import java.util.List;
27 import org.apache.maven.archiva.configuration.FileTypes;
30 * AbstractMonitoredConsumer
34 public abstract class AbstractMonitoredConsumer
37 private Set<ConsumerMonitor> monitors = new HashSet<ConsumerMonitor>();
39 public void addConsumerMonitor( ConsumerMonitor monitor )
41 monitors.add( monitor );
44 public void removeConsumerMonitor( ConsumerMonitor monitor )
46 monitors.remove( monitor );
49 protected void triggerConsumerError( String type, String message )
51 for ( Iterator<ConsumerMonitor> itmonitors = monitors.iterator(); itmonitors.hasNext(); )
53 ConsumerMonitor monitor = itmonitors.next();
56 monitor.consumerError( this, type, message );
65 protected void triggerConsumerWarning( String type, String message )
67 for ( Iterator<ConsumerMonitor> itmonitors = monitors.iterator(); itmonitors.hasNext(); )
69 ConsumerMonitor monitor = itmonitors.next();
72 monitor.consumerWarning( this, type, message );
81 protected void triggerConsumerInfo( String message )
83 for ( Iterator<ConsumerMonitor> itmonitors = monitors.iterator(); itmonitors.hasNext(); )
85 ConsumerMonitor monitor = itmonitors.next();
88 monitor.consumerInfo( this, message );
97 public boolean isProcessUnmodified()
102 protected List<String> getDefaultArtifactExclusions()
104 return FileTypes.DEFAULT_EXCLUSIONS;