ProductFeedService.java 680 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 *  com.adobe.cq.commerce.api.Product
 *  com.day.cq.wcm.api.Page
 *  javax.jcr.RepositoryException
 */
package com.adobe.cq.commerce.pim.api;

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.commerce.api.Product;
import com.day.cq.wcm.api.Page;
import java.util.List;
import javax.jcr.RepositoryException;

@ProviderType
public interface ProductFeedService {
    public List<Product> getFullProductsList(Page var1) throws RepositoryException;

    public List<Product> getIncrementalProductsList(Page var1, long var2) throws RepositoryException;
}