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

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.commerce.api.classification.ClassificationCategory;

@ProviderType
public interface Classification {
    public String getTitle();

    public String getDescription();

    public String getPath();

    public ClassificationCategory getRootCategory();
}