/* * 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.artifact.descriptor; import java.io.File; /** * Creates artifact descriptor for application plugins * * @param <T> type of created descriptors */ public interface ArtifactDescriptorFactory<T extends ArtifactDescriptor> { /** * Creates an artifact descriptor from a folder. * * @param artifactFolder an existing folder containing artifact files * @return a non null descriptor * @throws ArtifactDescriptorCreateException if the factory is not able to create a descriptor from the folder. */ T create(File artifactFolder) throws ArtifactDescriptorCreateException; }