ProductInfoManager.java 580 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 *  com.adobe.cq.commerce.api.Product
 */
package com.adobe.cq.commerce.pim.api;

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.commerce.api.Product;
import java.util.List;

@ProviderType
public interface ProductInfoManager {
    public List<Product> findProductsByTag(String var1, String[] var2);

    public List<Product> findProductsBySearch(String var1, String var2);

    public List<Product> findProductsByQuery(String var1, String var2);
}