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

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

@ProviderType
public interface ProductRelationship {
    public String getRelationshipType();

    public String getRelationshipTitle();

    public Product getProduct();

    public ValueMap getMetadata();
}