CommerceServiceFactory.java 632 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 *  org.apache.sling.api.resource.Resource
 */
package com.adobe.cq.commerce.api;

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.commerce.api.CommerceService;
import org.apache.sling.api.resource.Resource;

@ProviderType
public interface CommerceServiceFactory {
    public static final String PROPERTY_COMMERCE_PROVIDER = "commerceProvider";
    public static final String PROPERTY_COMMERCE_PROVIDER_LABEL = "commerceProviderLabel";

    public CommerceService getCommerceService(Resource var1);
}