OptOutService.java 506 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  javax.servlet.http.HttpServletRequest
 */
package com.adobe.granite.optout.api;

import java.util.Collection;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;

public interface OptOutService {
    public Collection<String> getCookieNames();

    public Map<String, String> getHeaders();

    public Collection<String> getWhitelistCookieNames();

    public boolean isOptedOut(HttpServletRequest var1);
}