SmartListManager.java
1.02 KB
/*
* 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.smartlist.SmartList;
import java.util.List;
import java.util.Map;
@ProviderType
public interface SmartListManager {
public SmartList getSmartList(String var1);
public List<SmartList> getSmartLists(String var1);
public SmartList createSmartList(String var1) throws CommerceException;
public SmartList createSmartList(String var1, Map<String, Object> var2) throws CommerceException;
public void updateSmartList(String var1, Map<String, Object> var2) throws CommerceException;
public void deleteSmartList(String var1) throws CommerceException;
public void makeSmartListDefault(String var1) throws CommerceException;
public void shareSmartList(String var1, Map<String, Object> var2) throws CommerceException;
}