All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.technologybrewery.fermenter.mda.metamodel.MetadataUrlResolver Maven / Gradle / Ivy

The newest version!
package org.technologybrewery.fermenter.mda.metamodel;

import java.util.List;

/**
 * Defines the contract for a resolver that can provide access to metadata.
 * 
 * NOTE: This is a legacy concept that will likely be removed completely once we convert everything
 */
public interface MetadataUrlResolver {
    
    static final String METADATA_LOCATION_PREFIX = "metadata.";
    static final String METADATA_LOCATIONS = METADATA_LOCATION_PREFIX + "locations";    

	List getMetadataURLs(ModelRepositoryConfiguration config);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy