blob: 5f2b740528ea97c37b01a206c28033e776c147c8 [file] [log] [blame]
package org.eclipse.aether.impl;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.deployment.DeployRequest;
import org.eclipse.aether.installation.InstallRequest;
/**
* A factory to create metadata generators. Metadata generators can contribute additional metadata during the
* installation/deployment of artifacts.
*
* @provisional This type is provisional and can be changed, moved or removed without prior notice.
*/
public interface MetadataGeneratorFactory
{
/**
* Creates a new metadata generator for the specified install request.
*
* @param session The repository system session from which to configure the generator, must not be {@code null}.
* @param request The install request the metadata generator is used for, must not be {@code null}.
* @return The metadata generator for the request or {@code null} if none.
*/
MetadataGenerator newInstance( RepositorySystemSession session, InstallRequest request );
/**
* Creates a new metadata generator for the specified deploy request.
*
* @param session The repository system session from which to configure the generator, must not be {@code null}.
* @param request The deploy request the metadata generator is used for, must not be {@code null}.
* @return The metadata generator for the request or {@code null} if none.
*/
MetadataGenerator newInstance( RepositorySystemSession session, DeployRequest request );
/**
* The priority of this factory. Factories with higher priority are invoked before those with lower priority.
*
* @return The priority of this factory.
*/
float getPriority();
}