SmartList.java
991 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
*/
package com.adobe.cq.commerce.api.smartlist;
import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.commerce.api.CommerceException;
import com.adobe.cq.commerce.api.collection.ProductCollection;
import com.adobe.cq.commerce.api.smartlist.SmartListEntry;
import java.util.Iterator;
import java.util.Map;
@ProviderType
public interface SmartList
extends ProductCollection {
public void add(SmartListEntry var1) throws CommerceException;
public void update(String var1, Map<String, Object> var2) throws CommerceException;
public Iterator<SmartListEntry> getSmartListEntries();
public String getOwner();
public boolean isDefault();
public Privacy getPrivacy();
public static enum Privacy {
PERSONAL,
SHARED_READONLY,
SHARED_EDITABLE,
PUBLIC;
private Privacy() {
}
}
}