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

com.adobe.cq.mcm.campaign.profile.MetaDataNode Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy