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

import aQute.bnd.annotation.ProviderType;

@ProviderType
public interface ShippingMethod {
    public String getPath();

    public String getPredicate();

    public String getTitle();

    public String getDescription();

    public String getImageUrl(String var1);

    public String getUIPath();

    public String getRedirectUrl();

    public <T> T getProperty(String var1, Class<T> var2);
}