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

com.adobe.cq.dam.cfm.MetaDataDefinition Maven / Gradle / Ivy

package com.adobe.cq.dam.cfm;

import aQute.bnd.annotation.ProviderType;

import java.util.Iterator;

/**
 * Implementations of this class provide access to the meta data definition of a template.
 */
@ProviderType
public interface MetaDataDefinition {

    /**
     * Gets an iterator on the meta data properties that are available.
     *
     * @return Iterator on meta data properties
     */
    Iterator getMetaDataProperties();

    /**
     * Gets a meta data property by the specified name.
     *
     * @param name The name of the meta data property
     * @return The meta data property; null if no such property exists
     */
    MetaDataProperty getMetaDataPropertyByName(String name);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy