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

import aQute.bnd.annotation.ProviderType;
import com.day.cq.wcm.api.Template;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ValueMap;

@ProviderType
public interface Service {
    public static final String BASE_PATH = "/etc/cloudservices";

    public String getTitle();

    public Long getInclusionRank();

    public String getDescription();

    public String getName();

    public String getPath();

    public String getComponentReference();

    public String getServiceUrl();

    public String getServiceUrlLabel();

    public String getIconPath();

    public String getThumbnailPath();

    public Template getTemplate();

    public Resource getResource();

    public Resource getContentResource();

    public ValueMap getProperties();

    public String[] getSelectableChildren();

    public Boolean isSelectableChild(String var1);

    public Boolean isVisible();
}