ProductFeed.java 849 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.cq.targetrecommendations.api.model;

import com.adobe.cq.targetrecommendations.api.model.RecommendationsEntity;
import java.util.Map;

public interface ProductFeed
extends RecommendationsEntity {
    public int getId();

    public String getName();

    public FeedType getType();

    public FeedSchedule getSchedule();

    public int getEnvironmentId();

    public Map<String, String> getAttributeMapping();

    public Map<String, String> getConnectionProperties();

    public static enum FeedSchedule {
        DAILY,
        WEEKLY,
        BI_WEEKLY,
        NEVER;
        

        private FeedSchedule() {
        }
    }

    public static enum FeedType {
        GOOGLE_PRODUCT,
        CSV,
        SITECATALYST_SAINT;
        

        private FeedType() {
        }
    }

}