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

com.adobe.cq.social.enablement.site.api.EnablementSite Maven / Gradle / Ivy

There is a newer version: 6.5.21
Show newest version
/*************************************************************************
 *
 * ADOBE CONFIDENTIAL
 * __________________
 *
 *  Copyright 2014 Adobe Systems Incorporated
 *  All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 **************************************************************************/
package com.adobe.cq.social.enablement.site.api;

import com.adobe.cq.social.scf.SocialComponent;
import com.adobe.cq.social.site.api.CommunitySite;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

/**
 * {@code SocialComponent} used for accessing Enablement-specific site configuration data (list of Enablement
 * Managers, etc.).
 */
public interface EnablementSite extends SocialComponent {

    /** The resource type. */
    public static final String RESOURCE_TYPE = "social/enablement/components/hbs/admin/enablementsite";
    public static final String SITE_RESOURCES_RESOURCE_TYPE = "social_enablement_resources";

    public static final String PARAM_ONLY_SHOW_NAME = "onlyShowName";

    /**
     * Get the corresponding {@code CommunitySite} parent.
     * @return corresponding Community Site
     */
    @JsonInclude(Include.NON_NULL)
    CommunitySite getSite();

    /**
     * @return the group members authorizable id for the enablement community group if one applies for the context of
     *         this enablement site
     */
    String getCommunityGroupMembersId();

    /**
     * @return the resource assets path where resources will be persisted in the DAM
     */
    String getResourceAssetsPath();

    /**
     * @return Enablement-specific Site configuration
     */
    EnablementSiteConfiguration getConfiguration();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy