/******************************************************************************* * Copyright (c) 2010, 2013 Sonatype, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Sonatype, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.aether; /** * A skeleton implementation for custom repository listeners. The callback methods in this class do nothing. */ public abstract class AbstractRepositoryListener implements RepositoryListener { /** * Enables subclassing. */ protected AbstractRepositoryListener() { } public void artifactDeployed( RepositoryEvent event ) { } public void artifactDeploying( RepositoryEvent event ) { } public void artifactDescriptorInvalid( RepositoryEvent event ) { } public void artifactDescriptorMissing( RepositoryEvent event ) { } public void artifactDownloaded( RepositoryEvent event ) { } public void artifactDownloading( RepositoryEvent event ) { } public void artifactInstalled( RepositoryEvent event ) { } public void artifactInstalling( RepositoryEvent event ) { } public void artifactResolved( RepositoryEvent event ) { } public void artifactResolving( RepositoryEvent event ) { } public void metadataDeployed( RepositoryEvent event ) { } public void metadataDeploying( RepositoryEvent event ) { } public void metadataDownloaded( RepositoryEvent event ) { } public void metadataDownloading( RepositoryEvent event ) { } public void metadataInstalled( RepositoryEvent event ) { } public void metadataInstalling( RepositoryEvent event ) { } public void metadataInvalid( RepositoryEvent event ) { } public void metadataResolved( RepositoryEvent event ) { } public void metadataResolving( RepositoryEvent event ) { } }