/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.module.deployment.impl.internal.artifact; import org.mule.runtime.core.config.bootstrap.ArtifactType; import org.mule.runtime.module.artifact.descriptor.DescriptorLoader; import java.util.Optional; /** * Maintains the registered {@link DescriptorLoader} */ public interface DescriptorLoaderRepository { /** * Gets a descriptor loader from the repository * * @param id identifies the loader to obtain. Non empty. * @param loaderClass class of {@link DescriptorLoader} to search for. No null. * @param <T> type of descriptor loader to return * @returns a non null {@link Optional} loader of the given class and ID * @throws LoaderNotFoundException if there is no registered loader of type {@link T} with the provided ID. */ <T extends DescriptorLoader> T get(String id, ArtifactType artifactType, Class<T> loaderClass) throws LoaderNotFoundException; }