Package com.adobe.cq.dam.cfm
Interface MetaDataDefinition
-
public interface MetaDataDefinition
Implementations of this class provide access to the meta data definition of a template.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Iterator<MetaDataProperty>
getMetaDataProperties()
Gets an iterator on the meta data properties that are available.MetaDataProperty
getMetaDataPropertyByName(java.lang.String name)
Gets a meta data property by the specified name.
-
-
-
Method Detail
-
getMetaDataProperties
java.util.Iterator<MetaDataProperty> getMetaDataProperties()
Gets an iterator on the meta data properties that are available.- Returns:
- Iterator on meta data properties
-
getMetaDataPropertyByName
MetaDataProperty getMetaDataPropertyByName(java.lang.String name)
Gets a meta data property by the specified name.- Parameters:
name
- The name of the meta data property- Returns:
- The meta data property;
null
if no such property exists
-
-