This project has retired. For details please refer to its Attic page.
ConsumerMonitor

org.apache.maven.archiva.consumers
Interface ConsumerMonitor

Package class diagram package ConsumerMonitor

public interface ConsumerMonitor

ConsumerMonitor - a monitor for consumers.


Method Summary
 void consumerError(Consumer consumer, java.lang.String type, java.lang.String message)
          A consumer error event.
 void consumerInfo(Consumer consumer, java.lang.String message)
          A consumer informational event.
 void consumerWarning(Consumer consumer, java.lang.String type, java.lang.String message)
          A consumer warning event.
 

Method Detail

consumerError

void consumerError(Consumer consumer,
                   java.lang.String type,
                   java.lang.String message)
A consumer error event.

Parameters:
consumer - the consumer that caused the error.
type - the type of error.
message - the message about the error.

consumerWarning

void consumerWarning(Consumer consumer,
                     java.lang.String type,
                     java.lang.String message)
A consumer warning event.

Parameters:
consumer - the consumer that caused the warning.
type - the type of warning.
message - the message about the warning.

consumerInfo

void consumerInfo(Consumer consumer,
                  java.lang.String message)
A consumer informational event.

Parameters:
consumer - the consumer that caused the informational message.
message - the message.