CallResults.java 444 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.day.cq.mcm.campaign;

import java.io.IOException;
import java.io.InputStream;
import java.util.Map;

public interface CallResults {
    public int getStatus();

    public Map<String, String> getResponseHeaders();

    public InputStream bodyAsStream() throws IOException;

    public String bodyAsString() throws IOException;

    public void destroy();

    public String getCompleteURL();
}