TargetRecommendation.java
783 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.cq.targetrecommendations.api.model;
import com.adobe.cq.targetrecommendations.api.model.RecommendationsEntity;
import java.util.List;
public interface TargetRecommendation
extends RecommendationsEntity {
public int getId();
public String getName();
public int getCatalogId();
public List<String> getTemplateNames();
public RecommendationState getState();
public List<Integer> getAlgorithmIds();
public String getLocationDisplayMbox();
public int getDefaultContentId();
public String getStartDate();
public String getEndDate();
public static enum RecommendationState {
ACTIVE,
INACTIVE;
private RecommendationState() {
}
}
}