ProductFeed.java
849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* 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() {
}
}
}