Configuration.java 1.1 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 *  com.day.cq.commons.inherit.InheritanceValueMap
 *  com.day.cq.wcm.api.Template
 *  org.apache.sling.api.resource.Resource
 */
package com.day.cq.wcm.webservicesupport;

import aQute.bnd.annotation.ProviderType;
import com.day.cq.commons.inherit.InheritanceValueMap;
import com.day.cq.wcm.api.Template;
import java.util.Iterator;
import org.apache.sling.api.resource.Resource;

@ProviderType
public interface Configuration {
    public String getTitle();

    public String getDescription();

    public String getName();

    public String getPath();

    public Long getLastModified();

    public String getIconPath();

    public String getThumbnailPath();

    public Template getTemplate();

    public Resource getParent();

    public Resource getResource();

    public Resource getContentResource();

    public InheritanceValueMap getProperties();

    public <T> T get(String var1, T var2);

    public <T> T getInherited(String var1, T var2);

    public Iterator<Configuration> listChildren();
}