org.sdmxsource.sdmx.api.model.superbeans.metadata.MetadataAttributeContainer Maven / Gradle / Ivy
package org.sdmxsource.sdmx.api.model.superbeans.metadata;
import java.util.List;
/**
* The interface Metadata attribute container.
*/
public interface MetadataAttributeContainer {
/**
* Returns any metadata attributes
*
* NOTEThe list is a copy so modifying the returned list will not
* be reflected in the MetadataAttributeBean instance
*
* @return metadata attributes
*/
List getMetadataAttributes();
/**
* Returns the metadata attribute with the given id, or null if none exist
*
* @param id the id
* @return metadata attribute by id
*/
MetadataAttributeSuperBean getMetadataAttributeById(String id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy