![JAR search and dependency download from the Maven repository](/logo.png)
com.adobe.cq.mcm.campaign.profile.MetaDataNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package com.adobe.cq.mcm.campaign.profile;
import java.util.Iterator;
/**
* Represents a single metadata definition in a hierarchical tree of meta data as retrieved
* by {@link MetaDataRetriever}
*/
public interface MetaDataNode {
String getId();
String getPath();
String getLabel();
String getType();
MetaDataNode add(MetaDataNode child);
Iterator getChildren();
MetaDataNode getChildByPath(String relPath);
boolean hasOptions();
Options getOptions();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy